4 instantiations of DescendantQuery
System.Private.Xml (4)
System\Xml\XPath\Internal\DescendantQuery.cs (1)
69public override XPathNodeIterator Clone() { return new DescendantQuery(this); }
System\Xml\XPath\Internal\QueryBuilder.cs (3)
89result = new DescendantQuery(qyGrandInput, root.Name, root.Prefix, root.NodeType, false, input.AbbrAxis); 143result = new DescendantQuery(qyInput, root.Name, root.Prefix, root.NodeType, false, /*abbrAxis:*/false); 158result = new DescendantQuery(qyInput, root.Name, root.Prefix, root.NodeType, true, root.AbbrAxis);
1 reference to DescendantQuery
System.Private.Xml (1)
System\Xml\XPath\Internal\DescendantQuery.cs (1)
16public DescendantQuery(DescendantQuery other) : base(other)