2 overrides of SelectDescendants
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentNavigator.cs (1)
760
public override XPathNodeIterator
SelectDescendants
(string name, string namespaceURI, bool matchSelf)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (1)
1465
public 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)
764
return 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);