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

MoveNext() public method

Position the iterator on the attribute. Return true if such a child exists and set Current property. Otherwise, return false (Current property is undefined).
public MoveNext ( ) : bool
return bool
        public bool MoveNext() {
            if (this.needFirst) {
                this.needFirst = !this.navCurrent.MoveToFirstAttribute();
                return !this.needFirst;
            }
            return this.navCurrent.MoveToNextAttribute();
        }
AttributeIterator