System.Xml.Xsl.Runtime.DescendantIterator.MoveNext C# (CSharp) Method

MoveNext() public method

Position this iterator to the next descendant node. Return false if there are no more descendant nodes. Return true if the Current property is set to the next node in the iteration.
public MoveNext ( ) : bool
return bool
        public bool MoveNext() {
            if (this.hasFirst) {
                this.hasFirst = false;
                return true;
            }
            return (this.filter.MoveToFollowing(this.navCurrent, this.navEnd));
        }
DescendantIterator