WebSecurity.IsAccountLockedOut Method (String, Int32, Int32)
Returns a value that indicates whether the specified membership account is temporarily locked because of too many failed password attempts in the specified number of seconds.
Assembly: WebMatrix.WebData (in WebMatrix.WebData.dll)
public static bool IsAccountLockedOut( string userName, int allowedPasswordAttempts, int intervalInSeconds )
Parameters
- userName
- Type: System.String
The user name of the membership account.
- allowedPasswordAttempts
- Type: System.Int32
The number of password attempts the user is permitted before the membership account is locked.
- intervalInSeconds
- Type: System.Int32
The number of seconds to lock a user account after the number of password attempts exceeds the value in the allowedPasswordAttempts parameter.
| Exception | Condition |
|---|---|
| InvalidOperationException | The SimpleMembershipProvider.Initialize(String, NameValueCollection) method was not called. -or- The InitializeDatabaseConnection() method was not called. -or- The SimpleMembershipProvider membership provider is not registered in the configuration of your site. For more information, contact your site's system administrator. |