2 overrides of SelectDescendants
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentNavigator.cs (1)
751public override XPathNodeIterator SelectDescendants(XPathNodeType type, bool matchSelf)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (1)
1489public override XPathNodeIterator SelectDescendants(XPathNodeType nt, bool includeSelf)
5 references to SelectDescendants
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (1)
1504return base.SelectDescendants(nt, includeSelf);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\DescendantQuery.cs (2)
46_nodeIterator = new IteratorFilter(nav.SelectDescendants(TypeTest, matchSelf), Name); 55_nodeIterator = nav.SelectDescendants(TypeTest, matchSelf);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\followingquery.cs (1)
76_iterator = _input.SelectDescendants(TypeTest, matchSelf);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\precedingquery.cs (1)
76_workIterator = last.SelectDescendants(XPathNodeType.All, true);