MySqlWebSecurity.IsAccountLockedOut Method (String, Int32, Int32)

MySQL Connector/Net

MySqlWebSecurityIsAccountLockedOut Method (String, Int32, Int32)

Namespace: MySql.Web.Security
Assembly: MySql.Web (in MySql.Web.dll) Version: 6.9.9
Syntax
public static bool IsAccountLockedOut(
	string userName,
	int allowedPasswordAttempts,
	int intervalInSeconds
)
Public Shared Function IsAccountLockedOut ( 
	userName As String,
	allowedPasswordAttempts As Integer,
	intervalInSeconds As Integer
) As Boolean
public:
static bool IsAccountLockedOut(
	String^ userName, 
	int allowedPasswordAttempts, 
	int intervalInSeconds
)
static member IsAccountLockedOut : 
        userName : string * 
        allowedPasswordAttempts : int * 
        intervalInSeconds : int -> bool 

Parameters

userName
Type: SystemString
allowedPasswordAttempts
Type: SystemInt32
intervalInSeconds
Type: SystemInt32

Return Value

Type: Boolean
See Also