2 writes to input
System.Xml (2)
System\Xml\XPath\Internal\CacheOutputQuery.cs (2)
22
this.
input
= input;
27
this.
input
= Clone(other.input);
15 references to input
System.Xml (15)
System\Xml\XPath\Internal\CacheOutputQuery.cs (4)
27
this.input = Clone(other.
input
);
37
input
.SetXsltContext(context);
43
return
input
.Evaluate(context);// This is trick. IDQuery needs this value. Otherwise we would return this.
72
input
.PrintQuery(w);
System\Xml\XPath\Internal\DocumentorderQuery.cs (2)
23
while ((node = base.
input
.Advance()) != null) {
31
return
input
.MatchNode(context);
System\Xml\XPath\Internal\FilterQuery.cs (1)
44
qyInput = query.
input
;
System\Xml\XPath\Internal\ForwardPositionQuery.cs (2)
25
while ((node = base.
input
.Advance()) != null) {
33
return
input
.MatchNode(context);
System\Xml\XPath\Internal\IdQuery.cs (1)
28
while ((temp =
input
.Advance()) != null) {
System\Xml\XPath\Internal\MergeFilterQuery.cs (4)
34
while (
input
.Advance() != null) {
35
child.Evaluate(
input
);
49
context =
input
.MatchNode(context);
68
input
.PrintQuery(w);
System\Xml\XPath\Internal\QueryBuilder.cs (1)
231
qyInput = ((DocumentOrderQuery)qyInput).
input
;