IUserManager.IsLockedOut Method
Returns a flag indicating whether the specified user is locked out.
Remarks
A user is locked out after he tries to login too many times using the wrong password. A locked out user will not be able to loging again for a specified amount of time. This method returns true if the specified user is locked out.
Syntax
Unit: Sphinx.UserManager
function IUserManager.IsLockedOut(User: TUser): Boolean; virtual; abstract;
Parameters
<-> | Parameter | Type | Description |
---|---|---|---|
User | TUser | The user to check for the lockout status. |
Returns
True if the specified user is locked out, otherwise false.