3 writes to args
System.Xml (3)
System\Xml\XPath\Internal\FunctionQuery.cs (3)
22this.args = args; 30args = tmp; 32this.args = tmp;
11 references to args
System.Xml (11)
System\Xml\XPath\Internal\FunctionQuery.cs (11)
26Query[] tmp = new Query[other.args.Count]; { 28tmp[i] = Clone(other.args[i]); 41foreach (Query argument in args) { 44XPathResultType[] argTypes = new XPathResultType[args.Count]; 45for(int i = 0; i < args.Count; i ++) { 46argTypes[i] = args[i].StaticType; 62object[] argVals = new object[args.Count]; 63for (int i = 0; i < args.Count; i ++) { 64argVals[i] = args[i].Evaluate(nodeIterator); 66argVals[i] = new XPathSelectionIterator(nodeIterator.Current, args[i]); 104foreach(Query arg in this.args) {