using System; using System.Collections.Generic; using System.Text; using System.IO; namespace COSXML.Model.Object { /// /// 分片上传返回的结果 /// /// public sealed class UploadPartResult : CosResult { /// /// 分片块的eTag /// public string eTag; internal override void InternalParseResponseHeaders() { List values; this.responseHeaders.TryGetValue("ETag", out values); if (values != null && values.Count > 0) { eTag = values[0]; } } } }