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