EHttpServerRequestVerbs

Copyright Epic Games, Inc. All Rights Reserved.

Windows
MacOS
Linux

References

Module

HttpServer

Header

/Engine/Source/Runtime/Online/HTTPServer/Public/HttpServerRequest.h

Include

#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

Description

VERB_NONE

VERB_GET

VERB_POST

VERB_PUT

VERB_PATCH

VERB_DELETE

VERB_OPTIONS

Remarks

Copyright Epic Games, Inc. All Rights Reserved.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss