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