15 overrides of StaticType
System.Xml (15)
System\Xml\XPath\Internal\BaseAxisQuery.cs (1)
119
public override XPathResultType
StaticType
{ get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\BooleanExpr.cs (1)
54
public override XPathResultType
StaticType
{ get { return XPathResultType.Boolean; } }
System\Xml\XPath\Internal\BooleanFunctions.cs (1)
64
public override XPathResultType
StaticType
{ get { return XPathResultType.Boolean; } }
System\Xml\XPath\Internal\CacheOutputQuery.cs (1)
65
public override XPathResultType
StaticType
{ get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\ContextQuery.cs (1)
49
public override XPathResultType
StaticType
{ get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\EmptyQuery.cs (1)
24
public override XPathResultType
StaticType
{ get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\ExtensionQuery.cs (1)
113
public override XPathResultType
StaticType
{ get { return XPathResultType.Any; } }
System\Xml\XPath\Internal\LogicalExpr.cs (1)
372
public override XPathResultType
StaticType
{ get { return XPathResultType.Boolean; } }
System\Xml\XPath\Internal\NodeFunctions.cs (1)
88
public override XPathResultType
StaticType
{ get { return Function.ReturnTypes[(int)funcType]; } }
System\Xml\XPath\Internal\NumberFunctions.cs (1)
102
public override XPathResultType
StaticType
{ get { return XPathResultType.Number; } }
System\Xml\XPath\Internal\NumericExpr.cs (1)
67
public override XPathResultType
StaticType
{ get { return XPathResultType.Number; } }
System\Xml\XPath\Internal\OperandQuery.cs (1)
26
public override XPathResultType
StaticType
{ get { return GetXPathType(val); } }
System\Xml\XPath\Internal\SortQuery.cs (1)
98
public override XPathResultType
StaticType
{ get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\StringFunctions.cs (1)
89
public override XPathResultType
StaticType
{ get {
System\Xml\XPath\Internal\UnionExpr.cs (1)
131
public override XPathResultType
StaticType
{ get { return XPathResultType.NodeSet; } }
18 references to StaticType
System.Xml (18)
System\Xml\XPath\Internal\BooleanExpr.cs (2)
24
if (opnd1.
StaticType
!= XPathResultType.Boolean) {
27
if (opnd2.
StaticType
!= XPathResultType.Boolean) {
System\Xml\XPath\Internal\CompiledXPathExpr.cs (1)
88
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) {
78
switch (cond.
StaticType
) {
System\Xml\XPath\Internal\FunctionQuery.cs (1)
46
argTypes[i] = args[i].
StaticType
;
System\Xml\XPath\Internal\GroupQuery.cs (1)
33
public override XPathResultType StaticType { get { return qyInput.
StaticType
; } }
System\Xml\XPath\Internal\NumericExpr.cs (2)
28
if (opnd1.
StaticType
!= XPathResultType.Number) {
31
if (opnd2.
StaticType
!= XPathResultType.Number) {
System\Xml\XPath\Internal\QueryBuilder.cs (4)
179
q.
StaticType
== XPathResultType.Any ||
180
q.
StaticType
== XPathResultType.Number
220
if (qyFilter != null && (propsCond & Props.HasPosition) == 0 && qyFilter.Condition.
StaticType
!= XPathResultType.Any) {
222
if (prevCond.
StaticType
== XPathResultType.Number) {
System\Xml\XPath\Internal\SortQuery.cs (4)
41
qyInput.
StaticType
!= XPathResultType.NodeSet &&
42
qyInput.
StaticType
!= XPathResultType.Any
165
if (evalQuery.
StaticType
== XPathResultType.NodeSet || evalQuery.
StaticType
== XPathResultType.Any) {