3 overrides of SelectDescendants
System.ServiceModel (1)
System\ServiceModel\Dispatcher\SeekableMessageNavigator.cs (1)
1092
public override XPathNodeIterator
SelectDescendants
(XPathNodeType type, bool matchSelf)
System.Xml (2)
System\Xml\Cache\XPathDocumentNavigator.cs (1)
679
public override XPathNodeIterator
SelectDescendants
(XPathNodeType type, bool matchSelf) {
System\Xml\Dom\DocumentXPathNavigator.cs (1)
1218
public override XPathNodeIterator
SelectDescendants
( XPathNodeType nt, bool includeSelf ) {
9 references to SelectDescendants
System.Data.SqlXml (3)
System\Xml\Xsl\XsltOld\NumberAction.cs (2)
241
XPathNodeIterator sel = startNode.
SelectDescendants
(XPathNodeType.All, /*matchSelf:*/ true);
261
XPathNodeIterator sel = startNode.
SelectDescendants
(XPathNodeType.All, /*matchSelf:*/ true);
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (1)
257
XPathNodeIterator sel = root.
SelectDescendants
(XPathNodeType.All, /*matchSelf:*/ false);
System.ServiceModel (1)
System\ServiceModel\Dispatcher\SeekableMessageNavigator.cs (1)
1099
return base.
SelectDescendants
(type, matchSelf);
System.Xml (5)
System\Xml\Dom\DocumentXPathNavigator.cs (1)
1230
return base.
SelectDescendants
( nt, includeSelf );
System\Xml\XPath\Internal\DescendantQuery.cs (2)
39
nodeIterator = new IteratorFilter(nav.
SelectDescendants
(TypeTest, matchSelf), Name);
44
nodeIterator = nav.
SelectDescendants
(TypeTest, matchSelf);
System\Xml\XPath\Internal\FollowingQuery.cs (1)
62
iterator = input.
SelectDescendants
(TypeTest, matchSelf);
System\Xml\XPath\Internal\PrecedingQuery.cs (1)
67
workIterator = last.
SelectDescendants
(XPathNodeType.All, true);