Navigation
API > API/Runtime > API/Runtime/HTTP > API/Runtime/HTTP/Interfaces > API/Runtime/HTTP/Interfaces/IHttpRequest
- IHttpRequest::AppendToHeader()
- FHttpRequestAdapterBase::AppendToHeader()
References
| Module | HTTP |
| Header | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpRequest.h |
| Include | #include "Interfaces/IHttpRequest.h" |
void AppendToHeader
&40;
const FString & HeaderName,
const FString & AdditionalHeaderValue
&41;
Remarks
Appends to the value already set in the header. If there is already content in that header, a comma delimiter is used. If the header is as of yet unset, the result is the same as calling SetHeader Content-Length is the only header set for you. Also see: SetHeader()
Parameters
| Name | Description |
|---|---|
| HeaderName | Name of the header (ie, Content-Type) |
| AdditionalHeaderValue | Value to add to the existing contents of the specified header. comma is inserted between old value and new value, per HTTP specifications |