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