메소드 | 설명 | |
---|---|---|
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 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 |