System.Xml.BaseTreeIterator.NextRightRowElement C# (CSharp) Méthode

NextRightRowElement() private méthode

private NextRightRowElement ( ) : bool
Résultat bool
        internal bool NextRightRowElement()
        {
            if (NextRight())
            {
                if (OnRowElement())
                {
                    return true;
                }
                return NextRowElement();
            }
            return false;
        }