8 overrides of ReturnType
System.Private.Xml (8)
System\Xml\XPath\Internal\Axis.cs (1)
57public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\Filter.cs (1)
20public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\Function.cs (1)
73public override XPathResultType ReturnType
System\Xml\XPath\Internal\Group.cs (1)
17public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\Operand.cs (1)
26public override XPathResultType ReturnType { get { return _type; } }
System\Xml\XPath\Internal\Operator.cs (1)
65public override XPathResultType ReturnType
System\Xml\XPath\Internal\Root.cs (1)
13public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\Variable.cs (1)
20public override XPathResultType ReturnType { get { return XPathResultType.Any; } }
6 references to ReturnType
System.Private.Xml (6)
System\Xml\XPath\Internal\XPathParser.cs (6)
220CheckNodeSet(opnd.ReturnType); 221CheckNodeSet(opnd2.ReturnType); 279CheckNodeSet(qyInput.ReturnType); 537if (arg.ReturnType != XPathResultType.String) 559pi.ArgTypes[i] != arg.ReturnType 565if (!(arg is Variable) && !(arg is Function && arg.ReturnType == XPathResultType.Any))