BgEngine.Security.Services.CodeFirstSecurity.IsAccountLockedOut C# (CSharp) 메소드

IsAccountLockedOut() 공개 정적인 메소드

public static IsAccountLockedOut ( string userName, int allowedPasswordAttempts, System.TimeSpan interval ) : bool
userName string
allowedPasswordAttempts int
interval System.TimeSpan
리턴 bool
        public static bool IsAccountLockedOut(string userName, int allowedPasswordAttempts, TimeSpan interval)
        {
            CodeFirstExtendedProvider provider = VerifyProvider();
            return IsAccountLockedOutInternal(provider, userName, allowedPasswordAttempts, interval);
        }

Same methods

CodeFirstSecurity::IsAccountLockedOut ( string userName, int allowedPasswordAttempts, int intervalInSeconds ) : bool