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