Answer the question
In order to leave comments, you need to log in
What is User Lockout?
Hello ASP.NET Identity connoisseurs. Explain the essence of some things on this technology:
1) What is User Lockout?
manager.UserLockoutEnabledByDefault = true;
manager.DefaultAccountLockoutTimeSpan = TimeSpan.FromMinutes(60);
manager.MaxFailedAccessAttemptsBeforeLockout = 5;
Answer the question
In order to leave comments, you need to log in
User Lockout
This is a temporary lockout that is set for the time interval specified in manager.DefaultAccountLockoutTimeSpan
after the number of manager.MaxFailedAccessAttemptsBeforeLockout
failed login attempts.
"Remember me"
Without "remember" Authorization cookies are set for the duration of the session (depends on auto-renewal settings).
With "remember" Cookies are set for a long period of time (month, year or more)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question