30 references to NodeSet
System.Private.Xml (30)
System\Xml\XPath\Internal\Axis.cs (1)
57public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\BaseAxisQuery.cs (1)
133public override XPathResultType StaticType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\CacheOutputQuery.cs (1)
72public override XPathResultType StaticType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\ContextQuery.cs (1)
53public override XPathResultType StaticType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\EmptyQuery.cs (1)
16public override XPathResultType StaticType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\Filter.cs (1)
20public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\FilterQuery.cs (1)
136case XPathResultType.NodeSet:
System\Xml\XPath\Internal\Function.cs (1)
91/* FunctionType.FuncID */ XPathResultType.NodeSet,
System\Xml\XPath\Internal\Group.cs (1)
17public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\IdQuery.cs (1)
23case XPathResultType.NodeSet:
System\Xml\XPath\Internal\NumberFunctions.cs (1)
64case XPathResultType.NodeSet:
System\Xml\XPath\Internal\Operator.cs (1)
77return XPathResultType.NodeSet;
System\Xml\XPath\Internal\Query.cs (1)
187if (value is XPathNodeIterator) return XPathResultType.NodeSet;
System\Xml\XPath\Internal\Root.cs (1)
13public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\SortQuery.cs (3)
42_qyInput.StaticType != XPathResultType.NodeSet && 110public override XPathResultType StaticType { get { return XPathResultType.NodeSet; } } 178if (evalQuery.StaticType == XPathResultType.NodeSet || evalQuery.StaticType == XPathResultType.Any)
System\Xml\XPath\Internal\StringFunctions.cs (1)
81case XPathResultType.NodeSet:
System\Xml\XPath\Internal\UnionExpr.cs (1)
156public override XPathResultType StaticType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\XPathParser.cs (3)
564case XPathResultType.NodeSet: 773if (t != XPathResultType.NodeSet && t != XPathResultType.Any) 781private static readonly XPathResultType[] s_temparray2 = { XPathResultType.NodeSet };
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (8)
559return XPathResultType.NodeSet; 730case XPathResultType.NodeSet: return ToIterator(val); 744public FuncCurrent() : base(0, 0, XPathResultType.NodeSet, Array.Empty<XPathResultType>()) { } 762public FuncGenerateId() : base(0, 1, XPathResultType.String, new XPathResultType[] { XPathResultType.NodeSet }) { } 816public FuncDocument() : base(1, 2, XPathResultType.NodeSet, new XPathResultType[] { XPathResultType.Any, XPathResultType.NodeSet }) { } 855public FuncKey() : base(2, 2, XPathResultType.NodeSet, new XPathResultType[] { XPathResultType.String, XPathResultType.Any }) { } 947public FuncNodeSet() : base(1, 1, XPathResultType.NodeSet, new XPathResultType[] { XPathResultType.Navigator }) { }