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

MoveNext() public method

Position the iterator on the next following-sibling node. Return true if such a node exists and set Current property. Otherwise, return false (Current property is undefined).
public MoveNext ( ) : bool
return bool
        public bool MoveNext() {
            return this.filter.MoveToFollowingSibling(this.navCurrent);
        }
FollowingSiblingIterator