Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
NamespaceURI
string
System.Xml.XPathNodePointer.NamespaceURI
get
package
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
{
141
XPathNodeType
xPathNodeType
=
ConvertNodeType
(
_node
);
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
}
156
return
_doc
.
NameTable
.
Add
(
_column
.
Namespace
);
157
}
158
}
System.Data.DataColumn.Namespace
string Namespace
Definition
DataColumn.cs:762
System.Xml.XPathNodePointer._fOnValue
bool _fOnValue
Definition
XPathNodePointer.cs:17
System.Xml.XPathNodePointer.RealFoliate
void RealFoliate()
Definition
XPathNodePointer.cs:1171
System.Xml.XPathNodePointer._node
XmlNode _node
Definition
XPathNodePointer.cs:13
System.Xml.XPathNodePointer._doc
readonly XmlDataDocument _doc
Definition
XPathNodePointer.cs:11
System.Xml.XPathNodePointer._column
DataColumn _column
Definition
XPathNodePointer.cs:15
System.Xml.XPathNodePointer.ConvertNodeType
XPathNodeType ConvertNodeType(XmlNode node)
Definition
XPathNodePointer.cs:435
System.Xml.XmlDocument.NameTable
XmlNameTable NameTable
Definition
XmlDocument.cs:212
System.Xml.XmlNameTable.Add
string Add(char[] array, int offset, int length)
System.Xml.XmlNode.NamespaceURI
virtual string NamespaceURI
Definition
XmlNode.cs:139
System.Xml.XPath.XPathNodeType
XPathNodeType
Definition
XPathNodeType.cs:4
System.Xml.ValueHandleType.Dictionary
@ Dictionary
System
Xml
XPathNodePointer
Generated by
1.10.0