5 overrides of IsDescendant
System.ServiceModel (3)
System\ServiceModel\Dispatcher\QuerySafeNavigator.cs (2)
405public override bool IsDescendant(XPathNavigator navigator) 784public override bool IsDescendant(XPathNavigator navigator)
System\ServiceModel\Dispatcher\SeekableMessageNavigator.cs (1)
539public override bool IsDescendant(XPathNavigator nav)
System.Xml (2)
System\Xml\Cache\XPathDocumentNavigator.cs (1)
730public override bool IsDescendant(XPathNavigator other) {
System\Xml\Dom\DocumentXPathNavigator.cs (1)
1013public override bool IsDescendant(XPathNavigator other) {
6 references to IsDescendant
System.Data.SqlXml (2)
System\Xml\Xsl\Runtime\TreeIterators.cs (2)
103if (this.state != IteratorState.NoPrevious && this.navRoot.IsDescendant(input)) 409if (this.navCurrent.IsDescendant(input))
System.ServiceModel (2)
System\ServiceModel\Dispatcher\QuerySafeNavigator.cs (2)
415return this.navigator.IsDescendant(nav.navigator); 794return this.navigator.IsDescendant(nav.navigator);
System.Xml (2)
System\Xml\XPath\Internal\FollowingQuery.cs (1)
40} while (prev.IsDescendant(input));
System\Xml\XPath\Internal\FollowingSibling.cs (1)
78while (currentNode.IsDescendant(nextInput)) {