1234567891011121314151617181920212223242526272829303132 |
- /*
- * Copyright (C) Alibaba Cloud Computing
- * All rights reserved.
- *
- * 版权所有 (C)阿里云计算有限公司
- */
- using System.IO;
- using Aliyun.OSS.Common.Communication;
- using Aliyun.OSS.Model;
- using Aliyun.OSS.Util;
- namespace Aliyun.OSS.Transform
- {
- internal class CopyObjectResultDeserializer : ResponseDeserializer<CopyObjectResult, CopyObjectResultModel>
- {
- public CopyObjectResultDeserializer(IDeserializer<Stream, CopyObjectResultModel> contentDeserializer)
- : base(contentDeserializer)
- {
- }
-
- public override CopyObjectResult Deserialize(ServiceResponse xmlStream)
- {
- var result = ContentDeserializer.Deserialize(xmlStream.Content);
- return new CopyObjectResult
- {
- ETag = OssUtils.TrimQuotes(result.ETag),
- LastModified = result.LastModified
- };
- }
- }
- }
|