22 references to Clone
System.Xml (22)
System\Xml\XPath\Internal\BaseAxisQuery.cs (1)
46this.qyInput = Clone(other.qyInput);
System\Xml\XPath\Internal\BooleanExpr.cs (2)
35this.opnd1 = Clone(other.opnd1); 36this.opnd2 = Clone(other.opnd2);
System\Xml\XPath\Internal\BooleanFunctions.cs (1)
26this.arg = Clone(other.arg);
System\Xml\XPath\Internal\CacheOutputQuery.cs (1)
27this.input = Clone(other.input);
System\Xml\XPath\Internal\CompiledXPathExpr.cs (1)
68return new CompiledXpathExpr(Query.Clone(query), expr, needContext);
System\Xml\XPath\Internal\FilterQuery.cs (1)
25this.cond = Clone(other.cond);
System\Xml\XPath\Internal\FunctionQuery.cs (1)
28tmp[i] = Clone(other.args[i]);
System\Xml\XPath\Internal\LogicalExpr.cs (2)
33this.opnd1 = Clone(other.opnd1); 34this.opnd2 = Clone(other.opnd2);
System\Xml\XPath\Internal\MergeFilterQuery.cs (1)
23this.child = Clone(other.child);
System\Xml\XPath\Internal\NodeFunctions.cs (1)
91NodeFunctions method = new NodeFunctions(funcType, Clone(arg));
System\Xml\XPath\Internal\NumberFunctions.cs (1)
27this.arg = Clone(other.arg);
System\Xml\XPath\Internal\NumericExpr.cs (2)
40this.opnd1 = Clone(other.opnd1); 41this.opnd2 = Clone(other.opnd2);
System\Xml\XPath\Internal\Query.cs (1)
185query = Clone(query);
System\Xml\XPath\Internal\SortQuery.cs (1)
32this.qyInput = Clone(other.qyInput);
System\Xml\XPath\Internal\StringFunctions.cs (1)
31tmp[i] = Clone(other.argList[i]);
System\Xml\XPath\Internal\UnionExpr.cs (2)
28this.qy1 = Clone(other.qy1); 29this.qy2 = Clone(other.qy2);
System\Xml\XPath\XPathNavigator.cs (2)
1042Query query = Query.Clone(cexpr.QueryTree); 1066Query query = Query.Clone(cexpr.QueryTree);