Navigation
API > API/Runtime > API/Runtime/HttpServer
References
| Module | HttpServer |
| Header | /Engine/Source/Runtime/Online/HTTPServer/Public/HttpServerRequest.h |
| Include | #include "HttpServerRequest.h" |
Syntax
struct FHttpServerRequest
Variables
| Type | Name | Description | |
|---|---|---|---|
| TArray< uint8 > | Body | The raw body contents | |
| TMap< FString, TArray< FString > > | Headers | The HTTP headers | |
| HttpVersion::EHttpServerHttpVersion | HttpVersion | The request HTTP protocol version | |
| TMap< FString, FString > | PathParams | The path parameters | |
| TSharedPtr< FInternetAddr > | PeerAddress | The IP address of the peer that initiated the request. | |
| TMap< FString, FString > | QueryParams | The query parameters | |
| FHttpPath | RelativePath | The handler-route-relative HTTP path | |
| EHttpServerRequestVerbs | Verb | The HTTP-compliant verb |
Constructors
| Type | Name | Description | |
|---|---|---|---|
| Constructor |