Navigation
API > API/Runtime > API/Runtime/HttpServer
| |
|
| Name |
EHttpServerRequestVerbs |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Online/HTTPServer/Public/HttpServerRequest.h |
| Include Path |
#include "HttpServerRequest.h" |
Syntax
enum EHttpServerRequestVerbs
{
VERB_NONE = 0,
VERB_GET = 1 << 0,
VERB_POST = 1 << 1,
VERB_PUT = 1 << 2,
VERB_PATCH = 1 << 3,
VERB_DELETE = 1 << 4,
VERB_OPTIONS = 1 << 5,
}
Values
| Name |
Remarks |
| VERB_NONE |
|
| VERB_GET |
|
| VERB_POST |
|
| VERB_PUT |
|
| VERB_PATCH |
|
| VERB_DELETE |
|
| VERB_OPTIONS |
|