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: 2017.0.101.17 (2017.0.101.17)

Syntax

C#
public override bool UnlockUser(
	string userName
)
Visual Basic
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

Type: Boolean
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