ホーム › Networking.WinInet › REQUEST_TIMES
REQUEST_TIMES
列挙型メンバー 7
| 名前 | 10進 | 16進 |
|---|---|---|
| NameResolutionStart | 0 | 0x0 |
| NameResolutionEnd | 1 | 0x1 |
| ConnectionEstablishmentStart | 2 | 0x2 |
| ConnectionEstablishmentEnd | 3 | 0x3 |
| TLSHandshakeStart | 4 | 0x4 |
| TLSHandshakeEnd | 5 | 0x5 |
| HttpRequestTimeMax | 32 | 0x20 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum REQUEST_TIMES : int {
NameResolutionStart = 0,
NameResolutionEnd = 1,
ConnectionEstablishmentStart = 2,
ConnectionEstablishmentEnd = 3,
TLSHandshakeStart = 4,
TLSHandshakeEnd = 5,
HttpRequestTimeMax = 32
} REQUEST_TIMES;public enum REQUEST_TIMES : int
{
NameResolutionStart = 0,
NameResolutionEnd = 1,
ConnectionEstablishmentStart = 2,
ConnectionEstablishmentEnd = 3,
TLSHandshakeStart = 4,
TLSHandshakeEnd = 5,
HttpRequestTimeMax = 32,
}Public Enum REQUEST_TIMES As Integer
NameResolutionStart = 0
NameResolutionEnd = 1
ConnectionEstablishmentStart = 2
ConnectionEstablishmentEnd = 3
TLSHandshakeStart = 4
TLSHandshakeEnd = 5
HttpRequestTimeMax = 32
End Enumimport enum
class REQUEST_TIMES(enum.IntEnum):
NameResolutionStart = 0
NameResolutionEnd = 1
ConnectionEstablishmentStart = 2
ConnectionEstablishmentEnd = 3
TLSHandshakeStart = 4
TLSHandshakeEnd = 5
HttpRequestTimeMax = 32// REQUEST_TIMES
pub const NameResolutionStart: i32 = 0;
pub const NameResolutionEnd: i32 = 1;
pub const ConnectionEstablishmentStart: i32 = 2;
pub const ConnectionEstablishmentEnd: i32 = 3;
pub const TLSHandshakeStart: i32 = 4;
pub const TLSHandshakeEnd: i32 = 5;
pub const HttpRequestTimeMax: i32 = 32;// REQUEST_TIMES
const (
NameResolutionStart int32 = 0
NameResolutionEnd int32 = 1
ConnectionEstablishmentStart int32 = 2
ConnectionEstablishmentEnd int32 = 3
TLSHandshakeStart int32 = 4
TLSHandshakeEnd int32 = 5
HttpRequestTimeMax int32 = 32
)const
NameResolutionStart = 0;
NameResolutionEnd = 1;
ConnectionEstablishmentStart = 2;
ConnectionEstablishmentEnd = 3;
TLSHandshakeStart = 4;
TLSHandshakeEnd = 5;
HttpRequestTimeMax = 32;// REQUEST_TIMES
pub const NameResolutionStart: i32 = 0;
pub const NameResolutionEnd: i32 = 1;
pub const ConnectionEstablishmentStart: i32 = 2;
pub const ConnectionEstablishmentEnd: i32 = 3;
pub const TLSHandshakeStart: i32 = 4;
pub const TLSHandshakeEnd: i32 = 5;
pub const HttpRequestTimeMax: i32 = 32;const
NameResolutionStart* = 0
NameResolutionEnd* = 1
ConnectionEstablishmentStart* = 2
ConnectionEstablishmentEnd* = 3
TLSHandshakeStart* = 4
TLSHandshakeEnd* = 5
HttpRequestTimeMax* = 32enum REQUEST_TIMES : int {
NameResolutionStart = 0,
NameResolutionEnd = 1,
ConnectionEstablishmentStart = 2,
ConnectionEstablishmentEnd = 3,
TLSHandshakeStart = 4,
TLSHandshakeEnd = 5,
HttpRequestTimeMax = 32,
}#define global NameResolutionStart 0x0
#define global NameResolutionEnd 0x1
#define global ConnectionEstablishmentStart 0x2
#define global ConnectionEstablishmentEnd 0x3
#define global TLSHandshakeStart 0x4
#define global TLSHandshakeEnd 0x5
#define global HttpRequestTimeMax 0x20