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

MoveNext() public method

Position this iterator to the next following node. Return false if there are no more following 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.needFirst) {
                if (!MoveFirst(this.filter, this.navCurrent))
                    return false;

                this.needFirst = false;
                return true;
            }

            return this.filter.MoveToFollowing(this.navCurrent, null);
        }
XPathFollowingIterator