Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Prefix
override
string
System.Xml.XPath.XPathNavigatorReader.Prefix
get
Definition at line
136
of file
XPathNavigatorReader.cs
.
137
{
138
get
139
{
140
if
(
_nav
.
NodeType
== XPathNodeType.Namespace &&
_nav
.
LocalName
.Length != 0)
141
{
142
return
NameTable
.
Add
(
"xmlns"
);
143
}
144
if
(
NodeType
== XmlNodeType.Text)
145
{
146
return
string
.Empty;
147
}
148
return
_nav
.
Prefix
;
149
}
150
}
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.XPathNavigator.Prefix
string Prefix
Definition
XPathNavigator.cs:396
System
Xml
XPath
XPathNavigatorReader
Generated by
1.10.0