Navigation
API > API/Plugins > API/Plugins/FileSandboxCore
| |
|
| Name |
UE::FileSandboxCore::EDeleteSandboxErrorCode |
| Type |
enum |
| Header File |
/Engine/Plugins/Developer/Sandbox/FileSandbox/Source/FileSandboxCore/Public/Types/Manager/DeleteSandboxResult.h |
| Include Path |
#include "Types/Manager/DeleteSandboxResult.h" |
Syntax
namespace UE
{
namespace FileSandboxCore
{
enum EDeleteSandboxErrorCode
{
Success,
InvalidName,
InvalidDirectory,
IOError,
CannotLeaveSandbox,
}
}
}
Values
| Name |
Remarks |
| Success |
Sandbox was deleted successfully. |
| InvalidName |
Given sandbox name could not be resolved to any sandbox. |
| InvalidDirectory |
Given directory does not contain any sandbox. |
| IOError |
An I/O error occured, e.g. the directory could not be deleted. |
| CannotLeaveSandbox |
Failed to leave the sandbox. |