2 writes to input
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheOutputQuery.cs (2)
22this.input = input; 28this.input = Clone(other.input);
15 references to input
dotnet-svcutil-lib (15)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheOutputQuery.cs (4)
28this.input = Clone(other.input); 40input.SetXsltContext(context); 47return input.Evaluate(context);// This is trick. IDQuery needs this value. Otherwise we would return this. 82input.PrintQuery(w);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\DocumentOrderQuery.cs (2)
22while ((node = base.input.Advance()) != null) 32return input.MatchNode(context);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FilterQuery.cs (1)
49qyInput = query.input;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ForwardPositionQuery.cs (2)
25while ((node = base.input.Advance()) != null) 35return input.MatchNode(context);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\IDQuery.cs (1)
28while ((temp = input.Advance()) != null)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\MergeFilterQuery.cs (4)
37while (input.Advance() != null) 39_child.Evaluate(input); 56context = input.MatchNode(context); 79input.PrintQuery(w);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (1)
272qyInput = ((DocumentOrderQuery)qyInput).input;