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

MoveNext() public method

Pop the top namespace from the stack and save it as navCurrent. If there are no more namespaces, return false.
public MoveNext ( ) : bool
return bool
        public bool MoveNext() {
            if (this.navStack.IsEmpty)
                return false;

            this.navCurrent = this.navStack.Pop();
            return true;
        }
NamespaceIterator