ホーム › Security.Authentication.Identity.Provider › ACCOUNT_STATE
ACCOUNT_STATE
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| NOT_CONNECTED | 0 | 0x0 |
| CONNECTING | 1 | 0x1 |
| CONNECT_COMPLETED | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum ACCOUNT_STATE : int {
NOT_CONNECTED = 0,
CONNECTING = 1,
CONNECT_COMPLETED = 2
} ACCOUNT_STATE;public enum ACCOUNT_STATE : int
{
NOT_CONNECTED = 0,
CONNECTING = 1,
CONNECT_COMPLETED = 2,
}Public Enum ACCOUNT_STATE As Integer
NOT_CONNECTED = 0
CONNECTING = 1
CONNECT_COMPLETED = 2
End Enumimport enum
class ACCOUNT_STATE(enum.IntEnum):
NOT_CONNECTED = 0
CONNECTING = 1
CONNECT_COMPLETED = 2// ACCOUNT_STATE
pub const NOT_CONNECTED: i32 = 0;
pub const CONNECTING: i32 = 1;
pub const CONNECT_COMPLETED: i32 = 2;// ACCOUNT_STATE
const (
NOT_CONNECTED int32 = 0
CONNECTING int32 = 1
CONNECT_COMPLETED int32 = 2
)const
NOT_CONNECTED = 0;
CONNECTING = 1;
CONNECT_COMPLETED = 2;// ACCOUNT_STATE
pub const NOT_CONNECTED: i32 = 0;
pub const CONNECTING: i32 = 1;
pub const CONNECT_COMPLETED: i32 = 2;const
NOT_CONNECTED* = 0
CONNECTING* = 1
CONNECT_COMPLETED* = 2enum ACCOUNT_STATE : int {
NOT_CONNECTED = 0,
CONNECTING = 1,
CONNECT_COMPLETED = 2,
}#define global NOT_CONNECTED 0x0
#define global CONNECTING 0x1
#define global CONNECT_COMPLETED 0x2