2 overrides of SelectDescendants
System.Private.Xml (2)
System\Xml\Cache\XPathDocumentNavigator.cs (1)
766
public override XPathNodeIterator
SelectDescendants
(string name, string namespaceURI, bool matchSelf)
System\Xml\Dom\DocumentXPathNavigator.cs (1)
1450
public override XPathNodeIterator
SelectDescendants
(string localName, string namespaceURI, bool matchSelf)
3 references to SelectDescendants
System.Private.Xml (3)
System\Xml\Cache\XPathDocumentNavigator.cs (1)
770
return base.
SelectDescendants
(name, namespaceURI, matchSelf);
System\Xml\XPath\Internal\DescendantQuery.cs (1)
47
_nodeIterator = nav.
SelectDescendants
(Name, Namespace!, matchSelf);
System\Xml\XPath\Internal\FollowingQuery.cs (1)
69
_iterator = _input.
SelectDescendants
(Name, Namespace!, matchSelf);