2 overrides of SelectDescendants
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentNavigator.cs (1)
760public override XPathNodeIterator SelectDescendants(string name, string namespaceURI, bool matchSelf)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (1)
1465public override XPathNodeIterator SelectDescendants(string localName, string namespaceURI, bool matchSelf)
3 references to SelectDescendants
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentNavigator.cs (1)
764return base.SelectDescendants(name, namespaceURI, matchSelf);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\DescendantQuery.cs (1)
50_nodeIterator = nav.SelectDescendants(Name, Namespace, matchSelf);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\followingquery.cs (1)
72_iterator = _input.SelectDescendants(Name, Namespace, matchSelf);