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