Enum Class AuthenticationStates
Reference the possible states an authentication session can be in.
Read time 1 minuteLast updated 2 hours ago
Overall states for the authentication subsystem.
Include
#include "AuthenticationStates.h"
Syntax
UENUM(BlueprintType)enum class EAuthenticationStates : uint8{ SignedOut UMETA(DisplayName = "Signed Out"), SigningIn UMETA(DisplayName = "Signing In"), Authorized UMETA(DisplayName = "Authorized"), Refreshing UMETA(DisplayName = "Refreshing"), Expired UMETA(DisplayName = "Expired")}
Values
Display Name | Name | Value | Description |
|---|---|---|---|
| Signed Out | | 0 | The default state of the Authentication subsystem. |
| Signing In | | 1 | The state declaring that the Authentication subsystem is either authorized or expired. |
| Authorized | | 2 | The state of the Authentication subsystem when successfully authorized, and not yet expired. |
| Refreshing | | 3 | The state of the Authentication subsystem when the session is in the process of refreshing its token. |
| Expired | | 4 | The state of the Authentication subsystem when the session has expired. |