SqlMembershipProvider.UnlockUser Method
.NET Framework 3.0
Clears the user's locked-out status so that the membership user can be validated.
Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public Overrides Function UnlockUser ( _ username As String _ ) As Boolean 'Usage Dim instance As SqlMembershipProvider Dim username As String Dim returnValue As Boolean returnValue = instance.UnlockUser(username)
public boolean UnlockUser ( String username )
public override function UnlockUser ( username : String ) : boolean
Not applicable.
Parameters
- username
The name of the membership user to clear the locked-out status for.
Return Value
true if the membership user was successfully unlocked; otherwise, false. A value of false is also returned if the user does not exist in the database.Users are most commonly locked out and cannot be validated by the ValidateUser method when the MaxInvalidPasswordAttempts is exceeded within the PasswordAttemptWindow.
Leading and trailing spaces are trimmed from the username parameter value.
Community Additions
ADD
Show: