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