Navigation
API > API/Runtime > API/Runtime/HTTP > API/Runtime/HTTP/IHttpRequest
Description
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()
Derived Overrides
| Name | AppendToHeader |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpRequest.h |
| Include Path | #include "Interfaces/IHttpRequest.h" |
void AppendToHeader
(
const FString & HeaderName,
const FString & AdditionalHeaderValue
)
Parameters
| Name | Remarks |
|---|---|
| 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 |