1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.IO;
- namespace COSXML.Model.Object
- {
-
-
-
-
- public sealed class UploadPartResult : CosResult
- {
-
-
-
- public string eTag;
- internal override void InternalParseResponseHeaders()
- {
- List<string> values;
- this.responseHeaders.TryGetValue("ETag", out values);
- if (values != null && values.Count > 0)
- {
- eTag = values[0];
- }
- }
- }
- }
|