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