System.Curl.curl_http_version
Delphi
curl_http_version = (
CURL_HTTP_VERSION_NONE, { setting this means we don't care, and that we'd
like the library to choose the best possible
for us! }
CURL_HTTP_VERSION_1_0, { please use HTTP 1.0 in the request }
CURL_HTTP_VERSION_1_1, { please use HTTP 1.1 in the request }
CURL_HTTP_VERSION_2_0, { please use HTTP 2.0 in the request }
CURL_HTTP_VERSION_LAST { *ILLEGAL* http version }
);
C++
enum DECLSPEC_DENUM curl_http_version : unsigned char { CURL_HTTP_VERSION_NONE, CURL_HTTP_VERSION_1_0, CURL_HTTP_VERSION_1_1, CURL_HTTP_VERSION_2_0, CURL_HTTP_VERSION_LAST };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | System.Curl.pas System.Curl.hpp |
System.Curl | System.Curl |
Description
Embarcadero Technologies does not currently have any additional information.