Clears the user's locked-out status so that the membership user can be validated.

Namespace:  Novalys.VisualGuard.Security.WebForm
Assembly:  Novalys.VisualGuard.Security.WebForm (in Novalys.VisualGuard.Security.WebForm.dll) Version: 3.2.912.1 (3.2.912.01)

Syntax

C#
public override bool UnlockUser(
	string userName
)
Visual Basic (Declaration)
Public Overrides Function UnlockUser ( _
	userName As String _
) As Boolean

Parameters

userName
Type: System..::.String
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.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionusername is an empty string, is longer than 64 characters.
System..::.ArgumentNullExceptionusername is null.

See Also