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