3 writes to _args
System.Private.Xml (3)
System\Xml\XPath\Internal\FunctionQuery.cs (3)
20
_args
= args;
31
_args
= tmp;
33
_args
= tmp;
10 references to _args
System.Private.Xml (10)
System\Xml\XPath\Internal\FunctionQuery.cs (10)
25
Query[] tmp = new Query[other.
_args
.Count];
29
tmp[i] = Clone(other.
_args
[i]);
45
foreach (Query argument in
_args
)
49
XPathResultType[] argTypes = new XPathResultType[
_args
.Count];
50
for (int i = 0; i <
_args
.Count; i++)
52
argTypes[i] =
_args
[i].StaticType;
71
object[] argVals = new object[
_args
.Count];
72
for (int i = 0; i <
_args
.Count; i++)
74
argVals[i] =
_args
[i].Evaluate(nodeIterator);
78
argVals[i] = new XPathSelectionIterator(nodeIterator.Current,
_args
[i]);