1 type derived from ChildrenQuery
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheChildrenQuery.cs (1)
21internal sealed class CacheChildrenQuery : ChildrenQuery
2 instantiations of ChildrenQuery
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ChildrenQuery.cs (1)
79public override XPathNodeIterator Clone() { return new ChildrenQuery(this); }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (1)
132result = new ChildrenQuery(qyInput, root.Name, root.Prefix, root.NodeType);
4 references to ChildrenQuery
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\baseaxisquery.cs (1)
125Debug.Assert(this is AttributeQuery || this is ChildrenQuery);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ChildrenQuery.cs (1)
20protected ChildrenQuery(ChildrenQuery other) : base(other)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FilterQuery.cs (2)
97ChildrenQuery childrenQuery = qyInput as ChildrenQuery;