XmlStreamDeserializer.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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;
  10. using System.Xml.Serialization;
  11. namespace Aliyun.OSS.Transform
  12. {
  13. /// <summary>
  14. /// Deserialize an object of type T from XML stream.
  15. /// </summary>
  16. internal class XmlStreamDeserializer<T> : IDeserializer<Stream, T>
  17. {
  18. private static readonly XmlSerializer Serializer = new XmlSerializer(typeof(T));
  19. /// <summary>
  20. /// Deserialize an object of type T, then close the underlying stream.
  21. /// </summary>
  22. public T Deserialize(Stream xmlStream)
  23. {
  24. using (xmlStream)
  25. {
  26. try
  27. {
  28. return (T)Serializer.Deserialize(xmlStream);
  29. }
  30. catch (XmlException ex)
  31. {
  32. throw new ResponseDeserializationException(ex.Message, ex);
  33. }
  34. catch (InvalidOperationException ex)
  35. {
  36. throw new ResponseDeserializationException(ex.Message, ex);
  37. }
  38. }
  39. }
  40. }
  41. }