estructura de HTTP_BYTE_RANGE (http.h)

La estructura HTTP_BYTE_RANGE se usa para especificar un intervalo de bytes dentro de un fragmento de respuesta almacenado en caché, un archivo u otro bloque de datos.

Sintaxis

typedef struct _HTTP_BYTE_RANGE {
  ULARGE_INTEGER StartingOffset;
  ULARGE_INTEGER Length;
} HTTP_BYTE_RANGE, *PHTTP_BYTE_RANGE;

Miembros

StartingOffset

Desplazamiento inicial del intervalo de bytes.

Length

Tamaño, en bytes, del intervalo. Si este miembro es HTTP_BYTE_RANGE_TO_EOF, el intervalo se extiende desde el desplazamiento inicial hasta el final del archivo o bloque de datos.

Requisitos

Requisito Value
Cliente mínimo compatible Windows Vista, Windows XP con SP2 [solo aplicaciones de escritorio]
Servidor mínimo compatible Windows Server 2003 [solo aplicaciones de escritorio]
Encabezado http.h

Consulte también

HTTP_DATA_CHUNK

HttpReadFragmentFromCache