Enum AuthenticationState
Indicates the current authentication state in an application's lifetime.
Namespace: Unity.Cloud.Identity
Syntax
public enum AuthenticationState
Examples
Fields
Name | Description | Value |
---|---|---|
AwaitingInitialization | Indicates the application is waiting for the completion of the initialization. |
0 |
LoggedIn | Indicates when an authenticated user is logged in. |
1 |
LoggedOut | Indicates no authenticated user is available. |
2 |
AwaitingLogin | Indicates the application is waiting for the completion of a login operation. |
3 |
AwaitingLogout | Indicates the application is waiting for the completion of a logout operation. |
4 |