Navigation
API > API/Runtime > API/Runtime/HTTP
Enumerates the current state of an Http request
| Name | EHttpRequestStatus::Type |
| Type | enum |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpBase.h |
| Include Path | #include "Interfaces/IHttpBase.h" |
Syntax
namespace EHttpRequestStatus
{
enum Type
{
NotStarted,
Processing,
Failed,
Succeeded,
}
}
Values
| Name | Remarks |
|---|---|
| NotStarted | Has not been started via ProcessRequest() |
| Processing | Currently being ticked and processed |
| Failed | Finished but failed |
| Succeeded | Finished and was successful |