System.Xml.Xsl.Runtime.ContentIterator.MoveNext C# (CSharp) Méthode

MoveNext() public méthode

Position the iterator on the next child content node. Return true if such a child exists and set Current property. Otherwise, return false (Current property is undefined).
public MoveNext ( ) : bool
Résultat bool
        public bool MoveNext() {
            if (this.needFirst) {
                this.needFirst = !this.navCurrent.MoveToFirstChild();
                return !this.needFirst;
            }
            return this.navCurrent.MoveToNext();
        }
ContentIterator