Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSerializerImplementation.cs
Go to the documentation of this file.
2
4
5public abstract class XmlSerializerImplementation
6{
7 public virtual XmlSerializationReader Reader
8 {
9 get
10 {
11 throw new NotSupportedException();
12 }
13 }
14
15 public virtual XmlSerializationWriter Writer
16 {
17 get
18 {
19 throw new NotSupportedException();
20 }
21 }
22
23 public virtual Hashtable ReadMethods
24 {
25 get
26 {
27 throw new NotSupportedException();
28 }
29 }
30
31 public virtual Hashtable WriteMethods
32 {
33 get
34 {
35 throw new NotSupportedException();
36 }
37 }
38
40 {
41 get
42 {
43 throw new NotSupportedException();
44 }
45 }
46
47 public virtual bool CanSerialize(Type type)
48 {
49 throw new NotSupportedException();
50 }
51
53 {
54 throw new NotSupportedException();
55 }
56}