2 overrides of SelectDescendants
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentNavigator.cs (1)
751
public override XPathNodeIterator
SelectDescendants
(XPathNodeType type, bool matchSelf)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (1)
1489
public override XPathNodeIterator
SelectDescendants
(XPathNodeType nt, bool includeSelf)
5 references to SelectDescendants
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (1)
1504
return base.
SelectDescendants
(nt, includeSelf);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\DescendantQuery.cs (2)
46
_nodeIterator = new IteratorFilter(nav.
SelectDescendants
(TypeTest, matchSelf), Name);
55
_nodeIterator = nav.
SelectDescendants
(TypeTest, matchSelf);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\followingquery.cs (1)
76
_iterator = _input.
SelectDescendants
(TypeTest, matchSelf);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\precedingquery.cs (1)
76
_workIterator = last.
SelectDescendants
(XPathNodeType.All, true);