3 writes to _args
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FunctionQuery.cs (3)
22
_args
= args;
33
_args
= tmp;
35
_args
= tmp;
11 references to _args
dotnet-svcutil-lib (11)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FunctionQuery.cs (11)
27
Query[] tmp = new Query[other.
_args
.Count];
31
tmp[i] = Clone(other.
_args
[i]);
47
foreach (Query argument in
_args
)
51
XPathResultType[] argTypes = new XPathResultType[
_args
.Count];
52
for (int i = 0; i <
_args
.Count; i++)
54
argTypes[i] =
_args
[i].StaticType;
73
object[] argVals = new object[
_args
.Count];
74
for (int i = 0; i <
_args
.Count; i++)
76
argVals[i] =
_args
[i].Evaluate(nodeIterator);
79
argVals[i] = new XPathSelectionIterator(nodeIterator.Current,
_args
[i]);
130
foreach (Query arg in
_args
)