XmlStreamSerializer.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * Copyright (C) Alibaba Cloud Computing
  3. * All rights reserved.
  4. *
  5. * 版权所有 (C)阿里云计算有限公司
  6. */
  7. using System;
  8. using System.IO;
  9. using System.Xml.Serialization;
  10. namespace Aliyun.OSS.Transform
  11. {
  12. /// <summary>
  13. /// Serialize an object of type TRequest to XML stream.
  14. /// </summary>
  15. internal class XmlStreamSerializer<TRequest> : ISerializer<TRequest, Stream>
  16. {
  17. private static readonly XmlSerializer Serializer = new XmlSerializer(typeof(TRequest));
  18. public Stream Serialize(TRequest requestObject)
  19. {
  20. MemoryStream stream = null;
  21. try
  22. {
  23. stream = new MemoryStream();
  24. var namespaces = new XmlSerializerNamespaces();
  25. namespaces.Add(string.Empty, string.Empty);
  26. Serializer.Serialize(stream, requestObject, namespaces);
  27. stream.Seek(0, SeekOrigin.Begin);
  28. return stream;
  29. }
  30. catch (InvalidOperationException ex)
  31. {
  32. if (stream != null)
  33. stream.Close();
  34. throw new RequestSerializationException(ex.Message, ex);
  35. }
  36. }
  37. }
  38. }