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

◆ IsAttrNmsp

bool MS.Internal.Xml.Cache.XPathNode.IsAttrNmsp
get

Definition at line 76 of file XPathNode.cs.

77 {
78 get
79 {
80 XPathNodeType nodeType = NodeType;
81 if (nodeType != XPathNodeType.Attribute)
82 {
83 return nodeType == XPathNodeType.Namespace;
84 }
85 return true;
86 }
87 }