Navigation
API > API/Runtime > API/Runtime/HttpServer
| |
|
| Name |
EHttpServerResponseFlags |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Online/HTTPServer/Public/HttpServerResponse.h |
| Include Path |
#include "HttpServerResponse.h" |
Syntax
enum EHttpServerResponseFlags
{
None = 0,
MultipleWriteStream = 1 << 0,
HasAdditionalWrites = 1 << 1,
SkipHeaderWrite = 1 << 2,
}
Values
| Name |
Remarks |
| None |
|
| MultipleWriteStream |
Used to indicate the response body will consist of multiple writes before another read/close (possibly an SSE stream) |
| HasAdditionalWrites |
Used to indicate if additional stream writes are expected, used with MultipleWriteStream |
| SkipHeaderWrite |
Used to indicate if the next response write should skip including headers, used with MultipleWriteStream |