CopyObjectResultDeserializer.cs 932 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright (C) Alibaba Cloud Computing
  3. * All rights reserved.
  4. *
  5. * 版权所有 (C)阿里云计算有限公司
  6. */
  7. using System.IO;
  8. using Aliyun.OSS.Common.Communication;
  9. using Aliyun.OSS.Model;
  10. using Aliyun.OSS.Util;
  11. namespace Aliyun.OSS.Transform
  12. {
  13. internal class CopyObjectResultDeserializer : ResponseDeserializer<CopyObjectResult, CopyObjectResultModel>
  14. {
  15. public CopyObjectResultDeserializer(IDeserializer<Stream, CopyObjectResultModel> contentDeserializer)
  16. : base(contentDeserializer)
  17. {
  18. }
  19. public override CopyObjectResult Deserialize(ServiceResponse xmlStream)
  20. {
  21. var result = ContentDeserializer.Deserialize(xmlStream.Content);
  22. return new CopyObjectResult
  23. {
  24. ETag = OssUtils.TrimQuotes(result.ETag),
  25. LastModified = result.LastModified
  26. };
  27. }
  28. }
  29. }