ホーム › Networking.HttpServer › HTTP_SERVICE_BINDING_TYPE
HTTP_SERVICE_BINDING_TYPE
列挙型メンバー 3
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| HttpServiceBindingTypeNone | 0 | 0x0 | 型なし。 |
| HttpServiceBindingTypeW | 1 | 0x1 | Unicode。 |
| HttpServiceBindingTypeA | 2 | 0x2 | ASCII。 |
公式ドキュメント
HTTP_SERVICE_BINDING_TYPE 列挙型は、サービス名の文字列型を指定します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum HTTP_SERVICE_BINDING_TYPE : int {
HttpServiceBindingTypeNone = 0,
HttpServiceBindingTypeW = 1,
HttpServiceBindingTypeA = 2
} HTTP_SERVICE_BINDING_TYPE;public enum HTTP_SERVICE_BINDING_TYPE : int
{
HttpServiceBindingTypeNone = 0,
HttpServiceBindingTypeW = 1,
HttpServiceBindingTypeA = 2,
}Public Enum HTTP_SERVICE_BINDING_TYPE As Integer
HttpServiceBindingTypeNone = 0
HttpServiceBindingTypeW = 1
HttpServiceBindingTypeA = 2
End Enumimport enum
class HTTP_SERVICE_BINDING_TYPE(enum.IntEnum):
HttpServiceBindingTypeNone = 0
HttpServiceBindingTypeW = 1
HttpServiceBindingTypeA = 2// HTTP_SERVICE_BINDING_TYPE
pub const HttpServiceBindingTypeNone: i32 = 0;
pub const HttpServiceBindingTypeW: i32 = 1;
pub const HttpServiceBindingTypeA: i32 = 2;// HTTP_SERVICE_BINDING_TYPE
const (
HttpServiceBindingTypeNone int32 = 0
HttpServiceBindingTypeW int32 = 1
HttpServiceBindingTypeA int32 = 2
)const
HttpServiceBindingTypeNone = 0;
HttpServiceBindingTypeW = 1;
HttpServiceBindingTypeA = 2;// HTTP_SERVICE_BINDING_TYPE
pub const HttpServiceBindingTypeNone: i32 = 0;
pub const HttpServiceBindingTypeW: i32 = 1;
pub const HttpServiceBindingTypeA: i32 = 2;const
HttpServiceBindingTypeNone* = 0
HttpServiceBindingTypeW* = 1
HttpServiceBindingTypeA* = 2enum HTTP_SERVICE_BINDING_TYPE : int {
HttpServiceBindingTypeNone = 0,
HttpServiceBindingTypeW = 1,
HttpServiceBindingTypeA = 2,
}#define global HttpServiceBindingTypeNone 0x0
#define global HttpServiceBindingTypeW 0x1
#define global HttpServiceBindingTypeA 0x2