UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
BackgroundHttpResponseImpl.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
6#include "HAL/Platform.h"
8
14{
15public:
18
19 //IHttpBackgroundResponse
20 virtual int32 GetResponseCode() const;
21 virtual const FString& GetTempContentFilePath() const;
22
23protected:
26};
FPlatformTypes::int32 int32
A 32-bit signed integer.
Definition Platform.h:1125
Definition BackgroundHttpResponseImpl.h:14
FBackgroundHttpResponseImpl()
Definition BackgroundHttpResponseImpl.cpp:10
virtual ~FBackgroundHttpResponseImpl()
Definition BackgroundHttpResponseImpl.h:17
virtual int32 GetResponseCode() const
Definition BackgroundHttpResponseImpl.cpp:16
virtual const FString & GetTempContentFilePath() const
Definition BackgroundHttpResponseImpl.cpp:21
int32 ResponseCode
Definition BackgroundHttpResponseImpl.h:25
FString TempContentFilePath
Definition BackgroundHttpResponseImpl.h:24
Definition IBackgroundHttpResponse.h:11