#region 程序集 Aliyun.OSS, Version=2.9.1.0, Culture=neutral, PublicKeyToken=0ad4175f0dac0b9b
// D:sinopec-tbm源代码 9.AssemblyAliyun.OSS.dll
#endregion
using System;
using System.Collections.Generic;
namespace Aliyun.OSS
{
public class ObjectMetadata
{
public const string Aes256ServerSideEncryption = "AES256";
public ObjectMetadata();
public string Crc64 { get; set; }
public string ContentMd5 { get; set; }
public string ETag { get; set; }
public string ContentDisposition { get; set; }
public string CacheControl { get; set; }
public string ContentEncoding { get; set; }
public string ContentType { get; set; }
public long ContentLength { get; set; }
public DateTime ExpirationTime { get; set; }
public DateTime LastModified { get; }
public IDictionary<string, object> HttpMetadata { get; }
public IDictionary<string, string> UserMetadata { get; }
public string ServerSideEncryption { get; set; }
public string ObjectType { get; }
public void AddHeader(string key, object value);
}
}