Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ NamespaceURI

override string System.Xml.XPath.XPathNavigatorReader.NamespaceURI
get

Definition at line 104 of file XPathNavigatorReader.cs.

105 {
106 get
107 {
108 if (_nav.NodeType == XPathNodeType.Namespace)
109 {
110 return NameTable.Add("http://www.w3.org/2000/xmlns/");
111 }
112 if (NodeType == XmlNodeType.Text)
113 {
114 return string.Empty;
115 }
116 return _nav.NamespaceURI;
117 }
118 }
void Add(TKey key, TValue value)