Goedel.MeshProfileManager.AskEmailAccount.Next C# (CSharp) Method

Next() private method

private Next ( ) : bool
return bool
        bool Next() {
            Data.AccountIndex++;
            if (Data.AccountIndex >= Data.AllMailAccountInfos.Count) {
                Data.Navigate(Data.Data_AskRecovery);
                return false;
                }
            return true;
            }
        }