HTTP_REQUEST_PROPERTY enumeration (http.h)

The HTTP_REQUEST_PROPERTY enumeration defines the properties that are configured by the HTTP Server API on a request.

Syntax

typedef enum _HTTP_REQUEST_PROPERTY {
  HttpRequestPropertyIsb,
  HttpRequestPropertyTcpInfoV0,
  HttpRequestPropertyQuicStats,
  HttpRequestPropertyTcpInfoV1,
  HttpRequestPropertySni,
  HttpRequestPropertyStreamError,
  HttpRequestPropertyWskApiTimings,
  HttpRequestPropertyQuicApiTimings,
  HttpRequestPropertyQuicStatsV2,
  HttpRequestPropertyQuicStreamStats,
  HttpRequestPropertyTcpInfoV2
} HTTP_REQUEST_PROPERTY, *PHTTP_REQUEST_PROPERTY;

Constants

 
HttpRequestPropertyStreamError
The HTTP/2 or HTTP/3 stream error on the request.

The HTTP_REQUEST_PROPERTY_STREAM_ERROR structure contains the configuration data for this property.

Remarks

The HTTP_REQUEST_PROPERTY enumeration types are used to set or query the configurations on a request. A member of this enumeration together with the associated configuration structure is used by HttpSetRequestProperty to define the configuration parameters.

Requirements

Requirement Value
Header http.h

See also

HttpSetRequestProperty