GetBucketLoggingResultDeserializer.cs 953 B

12345678910111213141516171819202122232425262728293031
  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. namespace Aliyun.OSS.Transform
  11. {
  12. internal class GetBucketLoggingResultDeserializer
  13. : ResponseDeserializer<BucketLoggingResult, SetBucketLoggingRequestModel>
  14. {
  15. public GetBucketLoggingResultDeserializer(IDeserializer<Stream, SetBucketLoggingRequestModel> contentDeserializer)
  16. : base(contentDeserializer)
  17. { }
  18. public override BucketLoggingResult Deserialize(ServiceResponse xmlStream)
  19. {
  20. var model = ContentDeserializer.Deserialize(xmlStream.Content);
  21. return new BucketLoggingResult
  22. {
  23. TargetBucket = model.LoggingEnabled.TargetBucket,
  24. TargetPrefix = model.LoggingEnabled.TargetPrefix
  25. };
  26. }
  27. }
  28. }