forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXmlSerializableDeserializer.cs
More file actions
73 lines (68 loc) · 2.4 KB
/
XmlSerializableDeserializer.cs
File metadata and controls
73 lines (68 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#if !SILVERLIGHT && !MONOTOUCH && !XBOX
using System;
using System.IO;
using System.Text;
using System.Xml;
using System.Runtime.Serialization;
using ServiceStack.DesignPatterns.Serialization;
namespace ServiceStack.ServiceModel.Serialization
{
public class XmlSerializableDeserializer : IStringDeserializer
{
public static XmlSerializableDeserializer Instance = new XmlSerializableDeserializer();
public To Parse<To>(string xml)
{
var type = typeof(To);
return (To)Parse(xml, type);
}
public object Parse(string xml, Type type)
{
try
{
var bytes = Encoding.UTF8.GetBytes(xml);
using (var reader = XmlDictionaryReader.CreateTextReader(bytes, new XmlDictionaryReaderQuotas()))
{
var serializer = new System.Xml.Serialization.XmlSerializer(type);
return serializer.Deserialize(reader);
}
}
catch (Exception ex)
{
throw new SerializationException(string.Format("Error serializing object of type {0}", type.FullName), ex);
}
}
public To Parse<To>(TextReader from)
{
var type = typeof(To);
try
{
using (from)
{
var serializer = new System.Xml.Serialization.XmlSerializer(type);
return (To)serializer.Deserialize(from);
}
}
catch (Exception ex)
{
throw new SerializationException(string.Format("Error serializing object of type {0}", type.FullName), ex);
}
}
public To Parse<To>(Stream from)
{
var type = typeof(To);
try
{
using (var reader = XmlDictionaryReader.CreateTextReader(from, new XmlDictionaryReaderQuotas()))
{
var serializer = new System.Xml.Serialization.XmlSerializer(type);
return (To)serializer.Deserialize(reader);
}
}
catch (Exception ex)
{
throw new SerializationException(string.Format("Error serializing object of type {0}", type.FullName), ex);
}
}
}
}
#endif