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

◆ ReturnType

override XPathResultType MS.Internal.Xml.XPath.Operator.ReturnType
get

Definition at line 47 of file Operator.cs.

48 {
49 get
50 {
51 if (_opType <= Op.GE)
52 {
53 return XPathResultType.Boolean;
54 }
55 if (_opType <= Op.MOD)
56 {
57 return XPathResultType.Number;
58 }
59 return XPathResultType.NodeSet;
60 }
61 }