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

◆ AttributeCount

int System.Xml.DataPointer.AttributeCount
getpackage

Definition at line 22 of file DataPointer.cs.

23 {
24 get
25 {
27 if (_node != null && _column == null && _node.NodeType == XmlNodeType.Element)
28 {
29 if (!IsFoliated(_node))
30 {
32 }
33 return _node.Attributes.Count;
34 }
35 return 0;
36 }
37 }
static bool IsFoliated(XmlNode node)
int ColumnCount(DataRow row, bool fAttribute, bool fNulls)
virtual ? XmlAttributeCollection Attributes
Definition XmlNode.cs:106
XmlNodeType NodeType
Definition XmlNode.cs:73