Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlDataNode.cs
Go to the documentation of this file.
1
using
System.Collections.Generic
;
2
using
System.Xml
;
3
4
namespace
System.Runtime.Serialization
;
5
6
internal
sealed
class
XmlDataNode
:
DataNode
<object>
7
{
8
private
IList<XmlAttribute>
_xmlAttributes
;
9
10
private
IList<XmlNode>
_xmlChildNodes
;
11
12
private
XmlDocument
_ownerDocument
;
13
14
internal
IList<XmlAttribute>
XmlAttributes
15
{
16
get
17
{
18
return
_xmlAttributes
;
19
}
20
set
21
{
22
_xmlAttributes
=
value
;
23
}
24
}
25
26
internal
IList<XmlNode>
XmlChildNodes
27
{
28
get
29
{
30
return
_xmlChildNodes
;
31
}
32
set
33
{
34
_xmlChildNodes
=
value
;
35
}
36
}
37
38
internal
XmlDocument
OwnerDocument
39
{
40
get
41
{
42
return
_ownerDocument
;
43
}
44
set
45
{
46
_ownerDocument
=
value
;
47
}
48
}
49
50
internal
XmlDataNode
()
51
{
52
dataType
=
Globals
.
TypeOfXmlDataNode
;
53
}
54
55
public
override
void
Clear
()
56
{
57
base
.
Clear
();
58
_xmlAttributes
=
null
;
59
_xmlChildNodes
=
null
;
60
_ownerDocument
=
null
;
61
}
62
}
System.Collections.Generic.Dictionary.Clear
void Clear()
Definition
Dictionary.cs:904
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Runtime.Serialization.DataNode< object >::dataType
Type dataType
Definition
DataNode.cs:5
System.Runtime.Serialization.DataNode
Definition
DataNode.cs:4
System.Runtime.Serialization.Globals.TypeOfXmlDataNode
static Type TypeOfXmlDataNode
Definition
Globals.cs:924
System.Runtime.Serialization.Globals
Definition
Globals.cs:13
System.Runtime.Serialization.XmlDataNode.XmlDataNode
XmlDataNode()
Definition
XmlDataNode.cs:50
System.Runtime.Serialization.XmlDataNode.OwnerDocument
XmlDocument OwnerDocument
Definition
XmlDataNode.cs:39
System.Runtime.Serialization.XmlDataNode.XmlAttributes
IList< XmlAttribute > XmlAttributes
Definition
XmlDataNode.cs:15
System.Runtime.Serialization.XmlDataNode.Clear
override void Clear()
Definition
XmlDataNode.cs:55
System.Runtime.Serialization.XmlDataNode._ownerDocument
XmlDocument _ownerDocument
Definition
XmlDataNode.cs:12
System.Runtime.Serialization.XmlDataNode._xmlChildNodes
IList< XmlNode > _xmlChildNodes
Definition
XmlDataNode.cs:10
System.Runtime.Serialization.XmlDataNode._xmlAttributes
IList< XmlAttribute > _xmlAttributes
Definition
XmlDataNode.cs:8
System.Runtime.Serialization.XmlDataNode
Definition
XmlDataNode.cs:7
System.Xml.XmlChildNodes
Definition
XmlChildNodes.cs:6
System.Xml.XmlDocument
Definition
XmlDocument.cs:13
System.Collections.Generic
Definition
IHashKeyCollection.cs:1
System.Runtime.Serialization
Definition
SerializationGuard.cs:3
System.Xml
Definition
BaseRegionIterator.cs:1
System.ExceptionArgument.value
@ value
source
System.Private.DataContractSerialization
System.Runtime.Serialization
XmlDataNode.cs
Generated by
1.10.0