15 overrides of StaticType
System.Private.Xml (15)
System\Xml\XPath\Internal\BaseAxisQuery.cs (1)
133
public override XPathResultType
StaticType
{ get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\BooleanExpr.cs (1)
57
public override XPathResultType
StaticType
{ get { return XPathResultType.Boolean; } }
System\Xml\XPath\Internal\BooleanFunctions.cs (1)
69
public override XPathResultType
StaticType
{ get { return XPathResultType.Boolean; } }
System\Xml\XPath\Internal\CacheOutputQuery.cs (1)
72
public override XPathResultType
StaticType
{ get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\ContextQuery.cs (1)
53
public override XPathResultType
StaticType
{ get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\EmptyQuery.cs (1)
16
public override XPathResultType
StaticType
{ get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\ExtensionQuery.cs (1)
125
public override XPathResultType
StaticType
{ get { return XPathResultType.Any; } }
System\Xml\XPath\Internal\LogicalExpr.cs (1)
439
public override XPathResultType
StaticType
{ get { return XPathResultType.Boolean; } }
System\Xml\XPath\Internal\NodeFunctions.cs (1)
96
public override XPathResultType
StaticType
{ get { return Function.ReturnTypes[(int)_funcType]; } }
System\Xml\XPath\Internal\NumberFunctions.cs (1)
115
public override XPathResultType
StaticType
{ get { return XPathResultType.Number; } }
System\Xml\XPath\Internal\NumericExpr.cs (1)
71
public override XPathResultType
StaticType
{ get { return XPathResultType.Number; } }
System\Xml\XPath\Internal\OperandQuery.cs (1)
24
public override XPathResultType
StaticType
{ get { return GetXPathType(val); } }
System\Xml\XPath\Internal\SortQuery.cs (1)
110
public override XPathResultType
StaticType
{ get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\StringFunctions.cs (1)
99
public override XPathResultType
StaticType
System\Xml\XPath\Internal\UnionExpr.cs (1)
156
public override XPathResultType
StaticType
{ get { return XPathResultType.NodeSet; } }
18 references to StaticType
System.Private.Xml (18)
System\Xml\XPath\Internal\BooleanExpr.cs (2)
21
if (opnd1.
StaticType
!= XPathResultType.Boolean)
25
if (opnd2.
StaticType
!= XPathResultType.Boolean)
System\Xml\XPath\Internal\CompiledXPathExpr.cs (1)
107
public override XPathResultType ReturnType { get { return _query.
StaticType
; } }
System\Xml\XPath\Internal\FilterQuery.cs (3)
39
if (_cond.
StaticType
!= XPathResultType.Number && _cond.
StaticType
!= XPathResultType.Any && _noPosition)
87
switch (_cond.
StaticType
)
System\Xml\XPath\Internal\FunctionQuery.cs (1)
52
argTypes[i] = _args[i].
StaticType
;
System\Xml\XPath\Internal\GroupQuery.cs (1)
29
public override XPathResultType StaticType { get { return qyInput.
StaticType
; } }
System\Xml\XPath\Internal\NumericExpr.cs (2)
25
if (opnd1.
StaticType
!= XPathResultType.Number)
29
if (opnd2.
StaticType
!= XPathResultType.Number)
System\Xml\XPath\Internal\QueryBuilder.cs (4)
210
q.
StaticType
== XPathResultType.Any ||
211
q.
StaticType
== XPathResultType.Number
256
if (qyFilter != null && (propsCond & Props.HasPosition) == 0 && qyFilter.Condition.
StaticType
!= XPathResultType.Any)
259
if (prevCond.
StaticType
== XPathResultType.Number)
System\Xml\XPath\Internal\SortQuery.cs (4)
42
_qyInput.
StaticType
!= XPathResultType.NodeSet &&
43
_qyInput.
StaticType
!= XPathResultType.Any
178
if (evalQuery.
StaticType
== XPathResultType.NodeSet || evalQuery.
StaticType
== XPathResultType.Any)