因此,在新的.Net Framework 4.5.1中,AspNetUser表没有用于在有限次数的不成功尝试后锁定用户的列。是否存在为此目的而构建的框架或解决方案,以替换曾经存在于以前的.net框架中的功能?或者我必须建立自己的?
答案 0 :(得分:30)
在即将发布的2.0 Identity版本中,支持帐户锁定
配置:
manager.UserLockoutEnabledByDefault = true; // Enables ability to lockout for users when created
manager.DefaultAccountLockoutTimeSpan = TimeSpan.FromMinutes(5);
manager.MaxFailedAccessAttemptsBeforeLockout = 5;
用法:
manager.IsLockedOutAsync(user.Id) // Check for lockout
manager.ResetAccessFailedCountAsync(user.Id); // Clear failed count after success
manager.AccessFailedAsync(user.Id); // Record a failure (this will lockout if enabled)
manager.SetLockoutEnabled(user.Id, enabled) // Enables or disables lockout for a user