AppendObjectResponseDeserializer.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Copyright (C) Alibaba Cloud Computing
  3. * All rights reserved.
  4. *
  5. * 版权所有 (C)阿里云计算有限公司
  6. */
  7. using Aliyun.OSS.Common.Communication;
  8. using Aliyun.OSS.Util;
  9. namespace Aliyun.OSS.Transform
  10. {
  11. internal class AppendObjectResponseDeserializer : ResponseDeserializer<AppendObjectResult, AppendObjectResult>
  12. {
  13. public AppendObjectResponseDeserializer()
  14. : base(null)
  15. { }
  16. public override AppendObjectResult Deserialize(ServiceResponse xmlStream)
  17. {
  18. var result = new AppendObjectResult();
  19. if (xmlStream.Headers.ContainsKey(HttpHeaders.ETag))
  20. result.ETag = OssUtils.TrimQuotes(xmlStream.Headers[HttpHeaders.ETag]);
  21. if (xmlStream.Headers.ContainsKey(HttpHeaders.NextAppendPosition))
  22. {
  23. result.NextAppendPosition = long.Parse(xmlStream.Headers[HttpHeaders.NextAppendPosition]);
  24. }
  25. if (xmlStream.Headers.ContainsKey(HttpHeaders.HashCrc64Ecma))
  26. {
  27. result.HashCrc64Ecma = ulong.Parse(xmlStream.Headers[HttpHeaders.HashCrc64Ecma]);
  28. }
  29. return result;
  30. }
  31. }
  32. }