Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Name
string
System.Xml.XmlNodeReaderNavigator.Name
get
Definition at line
84
of file
XmlNodeReaderNavigator.cs
.
85
{
86
get
87
{
88
if
(
_nAttrInd
!= -1)
89
{
90
if
(
_bOnAttrVal
)
91
{
92
return
string
.Empty;
93
}
94
if
(
_curNode
.
NodeType
== XmlNodeType.XmlDeclaration)
95
{
96
return
decNodeAttributes
[
_nAttrInd
].
name
;
97
}
98
return
docTypeNodeAttributes
[
_nAttrInd
].
name
;
99
}
100
if
(
IsLocalNameEmpty
(
_curNode
.
NodeType
))
101
{
102
return
string
.Empty;
103
}
104
return
_curNode
.
Name
;
105
}
106
}
System.Xml.XmlNodeReaderNavigator._bOnAttrVal
bool _bOnAttrVal
Definition
XmlNodeReaderNavigator.cs:63
System.Xml.XmlNodeReaderNavigator.docTypeNodeAttributes
VirtualAttribute[] docTypeNodeAttributes
Definition
XmlNodeReaderNavigator.cs:57
System.Xml.XmlNodeReaderNavigator._nAttrInd
int _nAttrInd
Definition
XmlNodeReaderNavigator.cs:36
System.Xml.XmlNodeReaderNavigator.IsLocalNameEmpty
bool IsLocalNameEmpty(XmlNodeType nt)
Definition
XmlNodeReaderNavigator.cs:319
System.Xml.XmlNodeReaderNavigator.decNodeAttributes
VirtualAttribute[] decNodeAttributes
Definition
XmlNodeReaderNavigator.cs:50
System.Xml.XmlNodeReaderNavigator._curNode
XmlNode _curNode
Definition
XmlNodeReaderNavigator.cs:22
System.Xml.XmlNode.Name
string Name
Definition
XmlNode.cs:59
System.Xml.XmlNode.NodeType
XmlNodeType NodeType
Definition
XmlNode.cs:73
System.Xml.XmlNodeReaderNavigator.VirtualAttribute.name
string name
Definition
XmlNodeReaderNavigator.cs:11
System
Xml
XmlNodeReaderNavigator
Generated by
1.10.0