Win32 API 日本語リファレンス
ホームNetworking.WinInet › REQUEST_TIMES

REQUEST_TIMES

列挙型
基底型i4

メンバー 7

名前10進16進
NameResolutionStart00x0
NameResolutionEnd10x1
ConnectionEstablishmentStart20x2
ConnectionEstablishmentEnd30x3
TLSHandshakeStart40x4
TLSHandshakeEnd50x5
HttpRequestTimeMax320x20

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 32
enum 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