forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXmlSerializableSerializer.Deserialize.cs
More file actions
70 lines (66 loc) · 2.22 KB
/
XmlSerializableSerializer.Deserialize.cs
File metadata and controls
70 lines (66 loc) · 2.22 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
#if !(SL5 || __IOS__ || XBOX || ANDROID || PCL)
using System;
using System.IO;
using System.Text;
using System.Xml;
using System.Runtime.Serialization;
namespace ServiceStack.Serialization
{
public partial class XmlSerializableSerializer
{
public To DeserializeFromString<To>(string xml)
{
var type = typeof(To);
return (To)DeserializeFromString(xml, type);
}
public object DeserializeFromString(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