Navigation
API > API/Runtime > API/Runtime/Core
The result of a query. Success indicates that the query worked and that the results are valid and can be used. Any other value indicates that the query failed in some manner and that the results cannot be trusted and should be discarded.
| Name | UE::Virtualization::EQueryResult |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Virtualization/VirtualizationTypes.h |
| Include Path | #include "Virtualization/VirtualizationTypes.h" |
Syntax
namespace UE
{
namespace Virtualization
{
enum EQueryResult
{
Success = 0,
Failure_Unknown,
Failure_NotImplemented,
}
}
}
Values
| Name | Remarks |
|---|---|
| Success | The query succeeded and the results are valid |
| Failure_Unknown | The query failed with an unspecified error |
| Failure_NotImplemented | The query failed because the current virtualization system has not implemented it |