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