Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
NodeType
XmlNodeType
System.Xml.DataPointer.NodeType
get
package
Definition at line
39
of file
DataPointer.cs
.
40
{
41
get
42
{
43
RealFoliate
();
44
if
(
_node
==
null
)
45
{
46
return
XmlNodeType.None;
47
}
48
if
(
_column
==
null
)
49
{
50
return
_node
.
NodeType
;
51
}
52
if
(
_fOnValue
)
53
{
54
return
XmlNodeType.Text;
55
}
56
if
(
_column
.
ColumnMapping
==
MappingType
.Attribute)
57
{
58
return
XmlNodeType.Attribute;
59
}
60
return
XmlNodeType.Element;
61
}
62
}
System.Data.DataColumn.ColumnMapping
virtual MappingType ColumnMapping
Definition
DataColumn.cs:956
System.Xml.DataPointer._column
DataColumn _column
Definition
DataPointer.cs:12
System.Xml.DataPointer._node
XmlNode _node
Definition
DataPointer.cs:10
System.Xml.DataPointer._fOnValue
bool _fOnValue
Definition
DataPointer.cs:14
System.Xml.DataPointer.RealFoliate
void RealFoliate()
Definition
DataPointer.cs:637
System.Xml.XmlNode.NodeType
XmlNodeType NodeType
Definition
XmlNode.cs:73
System.Data.MappingType
MappingType
Definition
MappingType.cs:4
System
Xml
DataPointer
Generated by
1.10.0