Navigation
API > API/Runtime > API/Runtime/Engine
This is the a generic web response object that holds the entirety of the web response made from PlatformInterfaceBase subclasses
| Name | UPlatformInterfaceWebResponse |
| Type | class |
| Header File | /Engine/Source/Runtime/Engine/Classes/Engine/PlatformInterfaceWebResponse.h |
| Include Path | #include "Engine/PlatformInterfaceWebResponse.h" |
Syntax
UCLASS (Transient, MinimalAPI)
class UPlatformInterfaceWebResponse : public UObject
Inheritance Hierarchy
- UObjectBase → UObjectBaseUtility → UObject → UPlatformInterfaceWebResponse
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
UPlatformInterfaceWebResponse
(
const FObjectInitializer& ObjectInitializer |
Engine/PlatformInterfaceWebResponse.h |
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| BinaryResponse | TArray< uint8 > | For non-string results, this is the response | Engine/PlatformInterfaceWebResponse.h | |
| Headers | TMap< FString, FString > | Response headers and their values | Engine/PlatformInterfaceWebResponse.h | |
| OriginalURL | FString | This holds the original requested URL | Engine/PlatformInterfaceWebResponse.h | |
| ResponseCode | int32 | Result code from the response (200=OK, 404=Not Found, etc) | Engine/PlatformInterfaceWebResponse.h | |
| StringResponse | FString | For string results, this is the response | Engine/PlatformInterfaceWebResponse.h | |
| Tag | int32 | A user-specified tag specified with the request | Engine/PlatformInterfaceWebResponse.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Retrieve the header and value for the given index of header/value pair | Engine/PlatformInterfaceWebResponse.h | ||
| Engine/PlatformInterfaceWebResponse.h | |||
virtual int32 GetNumHeaders() |
Engine/PlatformInterfaceWebResponse.h |