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