1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
-
- using System;
- using System.IO;
- using System.Collections.Generic;
- using Aliyun.OSS.Util;
- namespace Aliyun.OSS
- {
- #pragma warning disable 618, 3005
-
-
-
- public class AppendObjectRequest
- {
-
-
-
- public string BucketName { get; set; }
-
-
-
-
- public string Key { get; set; }
-
-
-
- public ObjectMetadata ObjectMetadata { get; set; }
-
-
-
- public long Position { get; set; }
-
-
-
- public Stream Content { get; set; }
-
-
-
-
-
-
- public AppendObjectRequest(string bucketName, string key)
- {
- BucketName = bucketName;
- Key = key;
- }
-
- internal void Populate(IDictionary<string, string> headers)
- {
- ObjectMetadata.Populate(headers);
- }
- }
- #pragma warning restore 618, 3005
- }
|