Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
HttpAddRequestHeadersA function (wininet.h)
Adds one or more HTTP request headers to the HTTP request handle.
Syntax
BOOL HttpAddRequestHeadersA(
[in] HINTERNET hRequest,
[in] LPCSTR lpszHeaders,
[in] DWORD dwHeadersLength,
[in] DWORD dwModifiers
);
Parameters
[in] hRequest
A handle returned by a call to the HttpOpenRequest function.
[in] lpszHeaders
A pointer to a string variable containing the headers to append to the request. Each header must be terminated by a CR/LF (carriage return/line feed) pair.
[in] dwHeadersLength
The size of lpszHeaders, in TCHARs. If this parameter is -1L, the function assumes that lpszHeaders is zero-terminated (ASCIIZ), and the length is computed.
[in] dwModifiers
A set of modifiers that control the semantics of this function. This parameter can be a combination of the following values.
| Value | Meaning |
|---|---|
|
Adds the header if it does not exist. Used with HTTP_ADDREQ_FLAG_REPLACE. |
|
Adds the header only if it does not already exist; otherwise, an error is returned. |
|
Coalesces headers of the same name. |
|
Coalesces headers of the same name. For example, adding "Accept: text/*" followed by "Accept: audio/*" with this flag results in the formation of the single header "Accept: text/*, audio/*". This causes the first header found to be coalesced. It is up to the calling application to ensure a cohesive scheme with respect to coalesced/separate headers. |
|
Coalesces headers of the same name using a semicolon. |
|
Replaces or removes a header. If the header value is empty and the header is found, it is removed. If not empty, the header value is replaced. |
Return value
Returns TRUE if successful, or FALSE otherwise. To get extended error information, call GetLastError.
Remarks
HttpAddRequestHeaders appends additional, free-format headers to the HTTP request handle and is intended for use by sophisticated clients that need detailed control over the exact request sent to the HTTP server.
Note that for basic HttpAddRequestHeaders, the application can pass in multiple headers in a single buffer. If the application is trying to remove or replace a header, only one header can be supplied in lpszHeaders.
Note
The wininet.h header defines HttpAddRequestHeaders as an alias that automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that is not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.
Requirements
| Requirement | Value |
|---|---|
| Minimum supported client | Windows 2000 Professional [desktop apps only] |
| Minimum supported server | Windows 2000 Server [desktop apps only] |
| Target Platform | Windows |
| Header | wininet.h |
| Library | Wininet.lib |
| DLL | Wininet.dll |
See also
Feedback
Was this page helpful?
