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