Метод | Описание | |
---|---|---|
CheckAuthentication ( ) : void |
ANY CODE RUNNING ON THE SERVER SHOULD ONLY BE RUN WHEN THE CURRENT USER IS AUTHENTICATED (EXCEPT CODE INVOLVING THE AUTHENTICATION PROCESS ;)
|
|
CurrentUserIsAuthenticated ( ) : bool | ||
PasswordIsValid ( string password ) : bool | ||
PasswordIsValid ( string password, string &errorDescription ) : bool | ||
UsernameIsValid ( string username ) : bool | ||
UsernameIsValid ( string username, string &errorDescription ) : bool | ||
WaitAsync ( int timeToWaitInMs ) : System.Threading.Tasks.Task |
Waits for the given time in a background thread (executed with a Task)
|
public static CheckAuthentication ( ) : void | ||
Результат | void |
public static CurrentUserIsAuthenticated ( ) : bool | ||
Результат | bool |
public static PasswordIsValid ( string password ) : bool | ||
password | string | |
Результат | bool |
public static PasswordIsValid ( string password, string &errorDescription ) : bool | ||
password | string | |
errorDescription | string | |
Результат | bool |
public static UsernameIsValid ( string username ) : bool | ||
username | string | |
Результат | bool |
public static UsernameIsValid ( string username, string &errorDescription ) : bool | ||
username | string | |
errorDescription | string | |
Результат | bool |
public static WaitAsync ( int timeToWaitInMs ) : System.Threading.Tasks.Task | ||
timeToWaitInMs | int | |
Результат | System.Threading.Tasks.Task |