3 instantiations of XPathAncestorIterator
System.Private.Xml (3)
System\Xml\XPath\Internal\XPathAncestorIterator.cs (1)
37public override XPathNodeIterator Clone() { return new XPathAncestorIterator(this); }
System\Xml\XPath\XPathNavigator.cs (2)
1236return new XPathAncestorIterator(this.Clone(), type, matchSelf); 1241return new XPathAncestorIterator(this.Clone(), name, namespaceURI, matchSelf);
1 reference to XPathAncestorIterator
System.Private.Xml (1)
System\Xml\XPath\Internal\XPathAncestorIterator.cs (1)
12public XPathAncestorIterator(XPathAncestorIterator other) : base(other) { }