Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlDataNode.cs
Go to the documentation of this file.
2using System.Xml;
3
5
6internal sealed class XmlDataNode : DataNode<object>
7{
9
11
13
15 {
16 get
17 {
18 return _xmlAttributes;
19 }
20 set
21 {
23 }
24 }
25
27 {
28 get
29 {
30 return _xmlChildNodes;
31 }
32 set
33 {
35 }
36 }
37
39 {
40 get
41 {
42 return _ownerDocument;
43 }
44 set
45 {
47 }
48 }
49
50 internal XmlDataNode()
51 {
53 }
54
55 public override void Clear()
56 {
57 base.Clear();
58 _xmlAttributes = null;
59 _xmlChildNodes = null;
60 _ownerDocument = null;
61 }
62}