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 }
void Add(TKey key, TValue value)