ホーム › Security.Credentials › CRED_PERSIST
CRED_PERSIST
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| CRED_PERSIST_NONE | 0 | 0x0 |
| CRED_PERSIST_SESSION | 1 | 0x1 |
| CRED_PERSIST_LOCAL_MACHINE | 2 | 0x2 |
| CRED_PERSIST_ENTERPRISE | 3 | 0x3 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum CRED_PERSIST : unsigned int {
CRED_PERSIST_NONE = 0,
CRED_PERSIST_SESSION = 1,
CRED_PERSIST_LOCAL_MACHINE = 2,
CRED_PERSIST_ENTERPRISE = 3
} CRED_PERSIST;public enum CRED_PERSIST : uint
{
CRED_PERSIST_NONE = 0,
CRED_PERSIST_SESSION = 1,
CRED_PERSIST_LOCAL_MACHINE = 2,
CRED_PERSIST_ENTERPRISE = 3,
}Public Enum CRED_PERSIST As UInteger
CRED_PERSIST_NONE = 0
CRED_PERSIST_SESSION = 1
CRED_PERSIST_LOCAL_MACHINE = 2
CRED_PERSIST_ENTERPRISE = 3
End Enumimport enum
class CRED_PERSIST(enum.IntEnum):
CRED_PERSIST_NONE = 0
CRED_PERSIST_SESSION = 1
CRED_PERSIST_LOCAL_MACHINE = 2
CRED_PERSIST_ENTERPRISE = 3// CRED_PERSIST
pub const CRED_PERSIST_NONE: u32 = 0;
pub const CRED_PERSIST_SESSION: u32 = 1;
pub const CRED_PERSIST_LOCAL_MACHINE: u32 = 2;
pub const CRED_PERSIST_ENTERPRISE: u32 = 3;// CRED_PERSIST
const (
CRED_PERSIST_NONE uint32 = 0
CRED_PERSIST_SESSION uint32 = 1
CRED_PERSIST_LOCAL_MACHINE uint32 = 2
CRED_PERSIST_ENTERPRISE uint32 = 3
)const
CRED_PERSIST_NONE = 0;
CRED_PERSIST_SESSION = 1;
CRED_PERSIST_LOCAL_MACHINE = 2;
CRED_PERSIST_ENTERPRISE = 3;// CRED_PERSIST
pub const CRED_PERSIST_NONE: u32 = 0;
pub const CRED_PERSIST_SESSION: u32 = 1;
pub const CRED_PERSIST_LOCAL_MACHINE: u32 = 2;
pub const CRED_PERSIST_ENTERPRISE: u32 = 3;const
CRED_PERSIST_NONE* = 0
CRED_PERSIST_SESSION* = 1
CRED_PERSIST_LOCAL_MACHINE* = 2
CRED_PERSIST_ENTERPRISE* = 3enum CRED_PERSIST : uint {
CRED_PERSIST_NONE = 0,
CRED_PERSIST_SESSION = 1,
CRED_PERSIST_LOCAL_MACHINE = 2,
CRED_PERSIST_ENTERPRISE = 3,
}#define global CRED_PERSIST_NONE 0x0
#define global CRED_PERSIST_SESSION 0x1
#define global CRED_PERSIST_LOCAL_MACHINE 0x2
#define global CRED_PERSIST_ENTERPRISE 0x3