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