2 writes to input
System.Private.Xml (2)
System\Xml\XPath\Internal\CacheOutputQuery.cs (2)
20
this.
input
= input;
26
this.
input
= Clone(other.input);
13 references to input
System.Private.Xml (13)
System\Xml\XPath\Internal\CacheOutputQuery.cs (3)
26
this.input = Clone(other.
input
);
38
input
.SetXsltContext(context);
45
return
input
.Evaluate(context); // This is trick. IDQuery needs this value. Otherwise we would return this.
System\Xml\XPath\Internal\DocumentorderQuery.cs (2)
18
while ((node = base.
input
.Advance()) != null)
28
return
input
.MatchNode(context);
System\Xml\XPath\Internal\FilterQuery.cs (1)
46
qyInput = query.
input
;
System\Xml\XPath\Internal\ForwardPositionQuery.cs (2)
22
while ((node = base.
input
.Advance()) != null)
32
return
input
.MatchNode(context);
System\Xml\XPath\Internal\IdQuery.cs (1)
25
while ((temp =
input
.Advance()) != null)
System\Xml\XPath\Internal\MergeFilterQuery.cs (3)
34
while (
input
.Advance() != null)
36
_child.Evaluate(
input
);
53
context =
input
.MatchNode(context);
System\Xml\XPath\Internal\QueryBuilder.cs (1)
270
qyInput = ((DocumentOrderQuery)qyInput).
input
;