1 type derived from ChildrenQuery
System.Private.Xml (1)
System\Xml\XPath\Internal\CacheChildrenQuery.cs (1)
17internal sealed class CacheChildrenQuery : ChildrenQuery
2 instantiations of ChildrenQuery
System.Private.Xml (2)
System\Xml\XPath\Internal\ChildrenQuery.cs (1)
72public override XPathNodeIterator Clone() { return new ChildrenQuery(this); }
System\Xml\XPath\Internal\QueryBuilder.cs (1)
130result = new ChildrenQuery(qyInput, root.Name, root.Prefix, root.NodeType);
4 references to ChildrenQuery
System.Private.Xml (4)
System\Xml\XPath\Internal\BaseAxisQuery.cs (1)
120Debug.Assert(this is AttributeQuery || this is ChildrenQuery);
System\Xml\XPath\Internal\ChildrenQuery.cs (1)
13protected ChildrenQuery(ChildrenQuery other) : base(other)
System\Xml\XPath\Internal\FilterQuery.cs (2)
94ChildrenQuery? childrenQuery = qyInput as ChildrenQuery;