2 overrides of SelectDescendants
System.Private.Xml (2)
System\Xml\Cache\XPathDocumentNavigator.cs (1)
757public override XPathNodeIterator SelectDescendants(XPathNodeType type, bool matchSelf)
System\Xml\Dom\DocumentXPathNavigator.cs (1)
1474public override XPathNodeIterator SelectDescendants(XPathNodeType nt, bool includeSelf)
8 references to SelectDescendants
System.Private.Xml (8)
System\Xml\Dom\DocumentXPathNavigator.cs (1)
1489return base.SelectDescendants(nt, includeSelf);
System\Xml\XPath\Internal\DescendantQuery.cs (2)
43_nodeIterator = new IteratorFilter(nav.SelectDescendants(TypeTest, matchSelf), Name); 52_nodeIterator = nav.SelectDescendants(TypeTest, matchSelf);
System\Xml\XPath\Internal\FollowingQuery.cs (1)
73_iterator = _input.SelectDescendants(TypeTest, matchSelf);
System\Xml\XPath\Internal\PrecedingQuery.cs (1)
72_workIterator = last.SelectDescendants(XPathNodeType.All, true);
System\Xml\Xsl\XsltOld\NumberAction.cs (2)
263XPathNodeIterator sel = startNode.SelectDescendants(XPathNodeType.All, /*matchSelf:*/ true); 289XPathNodeIterator sel = startNode.SelectDescendants(XPathNodeType.All, /*matchSelf:*/ true);
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (1)
301XPathNodeIterator sel = root.SelectDescendants(XPathNodeType.All, /*matchSelf:*/ false);