Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
LocalName
override
string
System.Xml.XPath.XPathNavigatorReader.LocalName
get
Definition at line
120
of file
XPathNavigatorReader.cs
.
121
{
122
get
123
{
124
if
(
_nav
.
NodeType
== XPathNodeType.Namespace &&
_nav
.
LocalName
.Length == 0)
125
{
126
return
NameTable
.
Add
(
"xmlns"
);
127
}
128
if
(
NodeType
== XmlNodeType.Text)
129
{
130
return
string
.Empty;
131
}
132
return
_nav
.
LocalName
;
133
}
134
}
System.Collections.Generic.Dictionary.Add
void Add(TKey key, TValue value)
Definition
Dictionary.cs:873
System.Xml.XPath.XPathNavigatorReader._nav
XPathNavigator _nav
Definition
XPathNavigatorReader.cs:21
System.Xml.XPath.XPathNavigatorReader.NameTable
override XmlNameTable NameTable
Definition
XPathNavigatorReader.cs:73
System.Xml.XPath.XPathNavigatorReader.NodeType
override XmlNodeType NodeType
Definition
XPathNavigatorReader.cs:102
System.Xml.XPath.XPathNavigator.LocalName
string LocalName
Definition
XPathNavigator.cs:390
System.Xml.XPath.XPathNavigator.NodeType
XPathNodeType NodeType
Definition
XPathNavigator.cs:388
System
Xml
XPath
XPathNavigatorReader
Generated by
1.10.0