Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets or sets the maximum number of access attempts allowed before a user is locked out (if lockout is enabled).
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
Syntax
public int MaxFailedAccessAttemptsBeforeLockout { get; set; }
public:
property int MaxFailedAccessAttemptsBeforeLockout {
int get();
void set(int value);
}
member MaxFailedAccessAttemptsBeforeLockout : int with get, set
Public Property MaxFailedAccessAttemptsBeforeLockout As Integer
Property Value
Type: System.Int32
The maximum number of access attempts allowed before a user is locked out (if lockout is enabled).
See Also
UserManager<TUser, TKey> Class
Microsoft.AspNet.Identity Namespace
ASP.NET Identity
Return to top