4 instantiations of DescendantQuery
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\DescendantQuery.cs (1)
72public override XPathNodeIterator Clone() { return new DescendantQuery(this); }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (3)
91result = new DescendantQuery(qyGrandInput, root.Name, root.Prefix, root.NodeType, false, input.AbbrAxis); 145result = new DescendantQuery(qyInput, root.Name, root.Prefix, root.NodeType, false, /*abbrAxis:*/false); 160result = new DescendantQuery(qyInput, root.Name, root.Prefix, root.NodeType, true, root.AbbrAxis);
1 reference to DescendantQuery
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\DescendantQuery.cs (1)
19public DescendantQuery(DescendantQuery other) : base(other)