3 overrides of SelectDescendants
System.ServiceModel (1)
System\ServiceModel\Dispatcher\SeekableMessageNavigator.cs (1)
1103
public override XPathNodeIterator
SelectDescendants
(string name, string namespaceURI, bool matchSelf)
System.Xml (2)
System\Xml\Cache\XPathDocumentNavigator.cs (1)
687
public override XPathNodeIterator
SelectDescendants
(string name, string namespaceURI, bool matchSelf) {
System\Xml\Dom\DocumentXPathNavigator.cs (1)
1196
public override XPathNodeIterator
SelectDescendants
( string localName, string namespaceURI, bool matchSelf ) {
4 references to SelectDescendants
System.ServiceModel (1)
System\ServiceModel\Dispatcher\SeekableMessageNavigator.cs (1)
1110
return base.
SelectDescendants
(name, namespaceURI, matchSelf);
System.Xml (3)
System\Xml\Cache\XPathDocumentNavigator.cs (1)
690
return base.
SelectDescendants
(name, namespaceURI, matchSelf);
System\Xml\XPath\Internal\DescendantQuery.cs (1)
41
nodeIterator = nav.
SelectDescendants
(Name, Namespace, matchSelf);
System\Xml\XPath\Internal\FollowingQuery.cs (1)
60
iterator = input.
SelectDescendants
(Name, Namespace, matchSelf);