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