8 overrides of ReturnType
System.Xml (8)
System\Xml\XPath\Internal\Axis.cs (1)
60public override XPathResultType ReturnType { get {return XPathResultType.NodeSet;} }
System\Xml\XPath\Internal\Filter.cs (1)
25public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\Function.cs (1)
77public override XPathResultType ReturnType {
System\Xml\XPath\Internal\Group.cs (1)
21public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\Operand.cs (1)
35public override XPathResultType ReturnType { get { return type; } }
System\Xml\XPath\Internal\Operator.cs (1)
66public override XPathResultType ReturnType {
System\Xml\XPath\Internal\Root.cs (1)
17public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\Variable.cs (1)
23public override XPathResultType ReturnType { get {return XPathResultType.Any; } }
6 references to ReturnType
System.Xml (6)
System\Xml\XPath\Internal\XPathParser.cs (6)
193CheckNodeSet(opnd.ReturnType); 194CheckNodeSet(opnd2.ReturnType); 248CheckNodeSet(qyInput.ReturnType); 472if (arg.ReturnType != XPathResultType.String) { 489pi.ArgTypes[i] != arg.ReturnType 493if (!(arg is Variable) && !(arg is Function && arg.ReturnType == XPathResultType.Any) ) {