3 instantiations of XPathAncestorIterator
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathAncestorIterator.cs (1)
42public override XPathNodeIterator Clone() { return new XPathAncestorIterator(this); }
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (2)
1303return new XPathAncestorIterator(this.Clone(), type, matchSelf); 1308return new XPathAncestorIterator(this.Clone(), name, namespaceURI, matchSelf);
1 reference to XPathAncestorIterator
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathAncestorIterator.cs (1)
17public XPathAncestorIterator(XPathAncestorIterator other) : base(other) { }