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

◆ IsNodeType

bool MS.Internal.Xml.XPath.XPathParser.IsNodeType
getprivate

Definition at line 76 of file XPathParser.cs.

77 {
78 get
79 {
80 if (_scanner.Prefix.Length == 0)
81 {
82 if (!(_scanner.Name == "node") && !(_scanner.Name == "text") && !(_scanner.Name == "processing-instruction"))
83 {
84 return _scanner.Name == "comment";
85 }
86 return true;
87 }
88 return false;
89 }
90 }

Referenced by MS.Internal.Xml.XPath.XPathParser.ParseNodeTest(), and MS.Internal.Xml.XPath.XPathParser.ParsePrimaryExpr().