Iterate over all content descendants with a particular XPathNodeType.
Inheritance: XPathDocumentBaseIterator
 /// <summary>
 /// Create a new iterator that is a copy of "iter".
 /// </summary>
 public XPathDocumentKindDescendantIterator(XPathDocumentKindDescendantIterator iter) : base(iter)
 {
     this.end       = iter.end;
     this.typ       = iter.typ;
     this.matchSelf = iter.matchSelf;
 }
Beispiel #2
0
 /// <summary>
 /// Create a new iterator that is a copy of "iter".
 /// </summary>
 public XPathDocumentKindDescendantIterator(XPathDocumentKindDescendantIterator iter) : base(iter)
 {
     _end       = iter._end;
     _typ       = iter._typ;
     _matchSelf = iter._matchSelf;
 }
 /// <summary>
 /// Create a new iterator that is a copy of "iter".
 /// </summary>
 public XPathDocumentKindDescendantIterator(XPathDocumentKindDescendantIterator iter) : base(iter)
 {
     _end = iter._end;
     _typ = iter._typ;
     _matchSelf = iter._matchSelf;
 }
 /// <summary>
 /// Create a new iterator that is a copy of "iter".
 /// </summary>
 public XPathDocumentKindDescendantIterator(XPathDocumentKindDescendantIterator iter) : base(iter) {
     this.end = iter.end;
     this.typ = iter.typ;
     this.matchSelf = iter.matchSelf;
 }