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

◆ NamespaceURI

string System.Xml.XPathNodePointer.NamespaceURI
getpackage

Definition at line 130 of file XPathNodePointer.cs.

131 {
132 get
133 {
134 RealFoliate();
135 if (_node == null)
136 {
137 return string.Empty;
138 }
139 if (_column == null)
140 {
142 if (xPathNodeType == XPathNodeType.Element || xPathNodeType == XPathNodeType.Root || xPathNodeType == XPathNodeType.Attribute)
143 {
144 return _node.NamespaceURI;
145 }
146 return string.Empty;
147 }
148 if (_fOnValue)
149 {
150 return string.Empty;
151 }
152 if (_column.Namespace == "http://www.w3.org/2000/xmlns/")
153 {
154 return string.Empty;
155 }
157 }
158 }
readonly XmlDataDocument _doc
XPathNodeType ConvertNodeType(XmlNode node)
string Add(char[] array, int offset, int length)
virtual string NamespaceURI
Definition XmlNode.cs:139