BgEngine.Security.Services.CodeFirstSecurity.IsAccountLockedOut C# (CSharp) Method

IsAccountLockedOut() public static method

public static IsAccountLockedOut ( string userName, int allowedPasswordAttempts, int intervalInSeconds ) : bool
userName string
allowedPasswordAttempts int
intervalInSeconds int
return bool
        public static bool IsAccountLockedOut(string userName, int allowedPasswordAttempts, int intervalInSeconds)
        {
            VerifyProvider();
            return IsAccountLockedOut(userName, allowedPasswordAttempts, TimeSpan.FromSeconds(intervalInSeconds));
        }

Same methods

CodeFirstSecurity::IsAccountLockedOut ( string userName, int allowedPasswordAttempts, System.TimeSpan interval ) : bool