1 type derived from ChildrenQuery
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheChildrenQuery.cs (1)
21
internal sealed class CacheChildrenQuery :
ChildrenQuery
2 instantiations of ChildrenQuery
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ChildrenQuery.cs (1)
79
public override XPathNodeIterator Clone() { return new
ChildrenQuery
(this); }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (1)
132
result = 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)
125
Debug.Assert(this is AttributeQuery || this is
ChildrenQuery
);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ChildrenQuery.cs (1)
20
protected ChildrenQuery(
ChildrenQuery
other) : base(other)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FilterQuery.cs (2)
97
ChildrenQuery
childrenQuery = qyInput as
ChildrenQuery
;