8 overrides of ReturnType
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Axis.cs (1)
61public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Filter.cs (1)
25public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Function.cs (1)
81public override XPathResultType ReturnType
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Group.cs (1)
21public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Operand.cs (1)
37public override XPathResultType ReturnType { get { return _type; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Operator.cs (1)
68public override XPathResultType ReturnType
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Root.cs (1)
16public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Variable.cs (1)
23public override XPathResultType ReturnType { get { return XPathResultType.Any; } }
6 references to ReturnType
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathParser.cs (6)
224CheckNodeSet(opnd.ReturnType); 225CheckNodeSet(opnd2.ReturnType); 288CheckNodeSet(qyInput.ReturnType); 550if (arg.ReturnType != XPathResultType.String) 572pi.ArgTypes[i] != arg.ReturnType 578if (!(arg is Variable) && !(arg is Function && arg.ReturnType == XPathResultType.Any))