CardShop.Auth.WebSecurityWrapper.CreateAccount C# (CSharp) Метод

CreateAccount() публичный Метод

public CreateAccount ( string userName, string password, bool requireConfirmationToken = false ) : string
userName string
password string
requireConfirmationToken bool
Результат string
        public string CreateAccount(string userName, string password, bool requireConfirmationToken = false)
        {
            return WebSecurity.CreateAccount(userName, password, requireConfirmationToken);
        }