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