2 overrides of SelectDescendants
System.Private.Xml (2)
System\Xml\Cache\XPathDocumentNavigator.cs (1)
757
public override XPathNodeIterator
SelectDescendants
(XPathNodeType type, bool matchSelf)
System\Xml\Dom\DocumentXPathNavigator.cs (1)
1474
public override XPathNodeIterator
SelectDescendants
(XPathNodeType nt, bool includeSelf)
8 references to SelectDescendants
System.Private.Xml (8)
System\Xml\Dom\DocumentXPathNavigator.cs (1)
1489
return 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)
263
XPathNodeIterator sel = startNode.
SelectDescendants
(XPathNodeType.All, /*matchSelf:*/ true);
289
XPathNodeIterator sel = startNode.
SelectDescendants
(XPathNodeType.All, /*matchSelf:*/ true);
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (1)
301
XPathNodeIterator sel = root.
SelectDescendants
(XPathNodeType.All, /*matchSelf:*/ false);