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