59 references to NodeSet
System.Data.SqlXml (8)
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (8)
468return XPathResultType.NodeSet; 607case XPathResultType.NodeSet : return ToIterator(val); 620public FuncCurrent() : base(0, 0, XPathResultType.NodeSet, new XPathResultType[] {}) {} 634public FuncGenerateId() : base(0, 1, XPathResultType.String , new XPathResultType[] { XPathResultType.NodeSet }) {} 674public FuncDocument() : base(1, 2, XPathResultType.NodeSet, new XPathResultType[] { XPathResultType.Any , XPathResultType.NodeSet}) {} 706public FuncKey() : base(2, 2, XPathResultType.NodeSet, new XPathResultType[] { XPathResultType.String , XPathResultType.Any }) {} 778public FuncNodeSet() : base(1, 1, XPathResultType.NodeSet, new XPathResultType[] { XPathResultType.Navigator }) {}
System.ServiceModel (29)
System\ServiceModel\Dispatcher\MatchSingleFxEngineOpcode.cs (3)
71if (XPathResultType.NodeSet == xpath.ReturnType) 121case XPathResultType.NodeSet: 174case XPathResultType.NodeSet:
System\ServiceModel\Dispatcher\QueryFunctions.cs (5)
69if (function.ArgTypes[i] == XPathResultType.NodeSet) 82case XPathResultType.NodeSet: 126case XPathResultType.NodeSet: 165case XPathResultType.NodeSet: 202case XPathResultType.NodeSet:
System\ServiceModel\Dispatcher\QuerySubExprEliminator.cs (1)
574if (fop.ReturnType == XPathResultType.NodeSet && fop.ArgCount == 0)
System\ServiceModel\Dispatcher\XPathCompiler.cs (1)
324return func.ReturnType == XPathResultType.NodeSet && func.Maxargs == 0;
System\ServiceModel\Dispatcher\XPathExpr.cs (2)
313return XPathResultType.NodeSet; 333case XPathResultType.NodeSet:
System\ServiceModel\Dispatcher\XPathMessageContext.cs (11)
810: base(new XPathResultType[0], 0, 0, XPathResultType.NodeSet) 856: base(new XPathResultType[0], 0, 0, XPathResultType.NodeSet) 970: base(new XPathResultType[] { XPathResultType.NodeSet }, 1, 1, XPathResultType.String) 1032: base(new XPathResultType[] { XPathResultType.NodeSet }, 1, 1, XPathResultType.Boolean) 1097: base(new XPathResultType[] { XPathResultType.NodeSet }, 1, 1, XPathResultType.Boolean) 1171: base(new XPathResultType[] { XPathResultType.NodeSet }, 1, 1, XPathResultType.Boolean) 1238: base(new XPathResultType[] { XPathResultType.String }, 1, 1, XPathResultType.NodeSet) 1371: base(new XPathResultType[] { }, 0, 0, XPathResultType.NodeSet) 1422: base(new XPathResultType[] { }, 0, 0, XPathResultType.NodeSet) 1470: base(new XPathResultType[] { }, 0, 0, XPathResultType.NodeSet) 1517: base(new XPathResultType[] { }, 0, 0, XPathResultType.NodeSet)
System\ServiceModel\Dispatcher\XPathResult.cs (6)
23this.resultType = XPathResultType.NodeSet; 71case XPathResultType.NodeSet: 87if (this.resultType != XPathResultType.NodeSet) 102case XPathResultType.NodeSet: 123case XPathResultType.NodeSet: 147case XPathResultType.NodeSet:
System.Xml (22)
System\Xml\XPath\Internal\Axis.cs (1)
60public override XPathResultType ReturnType { get {return XPathResultType.NodeSet;} }
System\Xml\XPath\Internal\BaseAxisQuery.cs (1)
119public override XPathResultType StaticType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\CacheOutputQuery.cs (1)
65public override XPathResultType StaticType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\ContextQuery.cs (1)
49public override XPathResultType StaticType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\EmptyQuery.cs (1)
24public override XPathResultType StaticType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\Filter.cs (1)
25public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\FilterQuery.cs (1)
117case XPathResultType.NodeSet:
System\Xml\XPath\Internal\Function.cs (1)
92/* FunctionType.FuncID */ XPathResultType.NodeSet,
System\Xml\XPath\Internal\Group.cs (1)
21public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\IdQuery.cs (1)
26case XPathResultType.NodeSet:
System\Xml\XPath\Internal\NumberFunctions.cs (1)
61case XPathResultType.NodeSet :
System\Xml\XPath\Internal\Operator.cs (1)
74return XPathResultType.NodeSet;
System\Xml\XPath\Internal\Query.cs (1)
221if (value is XPathNodeIterator) return XPathResultType.NodeSet;
System\Xml\XPath\Internal\Root.cs (1)
17public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\SortQuery.cs (3)
41qyInput.StaticType != XPathResultType.NodeSet && 98public override XPathResultType StaticType { get { return XPathResultType.NodeSet; } } 165if (evalQuery.StaticType == XPathResultType.NodeSet || evalQuery.StaticType == XPathResultType.Any) {
System\Xml\XPath\Internal\StringFunctions.cs (1)
72case XPathResultType.NodeSet:
System\Xml\XPath\Internal\UnionExpr.cs (1)
131public override XPathResultType StaticType { get { return XPathResultType.NodeSet; } }
System\Xml\XPath\Internal\XPathParser.cs (3)
492case XPathResultType.NodeSet : 674if (t != XPathResultType.NodeSet && t != XPathResultType.Any) { 681static readonly XPathResultType[] temparray2 = {XPathResultType.NodeSet};