Inheritance: System.Web.Security.MembershipProvider
コード例 #1
0
ファイル: CodeFirstSecurity.cs プロジェクト: yagopv/BgEngine
 private static bool IsAccountLockedOutInternal(CodeFirstExtendedProvider provider, string userName, int allowedPasswordAttempts, TimeSpan interval)
 {
     return (provider.GetUser(userName, false) != null && provider.GetPasswordFailuresSinceLastSuccess(userName) > allowedPasswordAttempts && provider.GetLastPasswordFailureDate(userName).Add(interval) > DateTime.UtcNow);
 }