API reference
API reference
Select your platform
No SDKs available
No versions available

FOvrAppDownloadResult Struct

Represents the result of an app download. You will use it when you start an app download, cancel an app download or install an app update which was previous downloaded. In those scenarios, the app download result will be the payload of UOvrRequestsBlueprintLibrary::Application_StartAppDownload(), UOvrRequestsBlueprintLibrary::Application_CancelAppDownload() or UOvrRequestsBlueprintLibrary::Application_InstallAppUpdateAndRelaunch() API calls.

Constructors

FOvrAppDownloadResult ()
This is the default constructor for the struct, which initializes the ::ovrAppDownloadResultHandle and TOvrMessageHandlePtr to their default values.
Signature
FOvrAppDownloadResult::FOvrAppDownloadResult()
FOvrAppDownloadResult ( OvrHandle , MessageHandlePtr )
Copying values from an OVR handle to the array, and the originating message to prevent the handle from being freed.
Signature
FOvrAppDownloadResult::FOvrAppDownloadResult(ovrAppDownloadResultHandle OvrHandle, TOvrMessageHandlePtr MessageHandlePtr)
Parameters
OvrHandle: ovrAppDownloadResultHandle
MessageHandlePtr: TOvrMessageHandlePtr

Fields

AppInstallResult : EOvrAppInstallResult
Result of the install operation returned by the installer. You can find more information about possible members from EOvrAppInstallResult. In case of an error during install process, the error message contains the string representation of this result.
Signature
EOvrAppInstallResult FOvrAppDownloadResult::AppInstallResult
Timestamp : int64
Timestamp in milliseconds when the operation finished.
Signature
int64 FOvrAppDownloadResult::Timestamp

Member Functions

Clear ()
Setting all values to their defaults, effectively clearing the struct.
Signature
void FOvrAppDownloadResult::Clear()
Returns
void
Update ( OvrHandle , MessageHandlePtr )
Updating values from an OVR handle to the array, and the originating message to prevent the handle from being freed.
Signature
void FOvrAppDownloadResult::Update(ovrAppDownloadResultHandle OvrHandle, TOvrMessageHandlePtr MessageHandlePtr)
Parameters
OvrHandle: ovrAppDownloadResultHandle
MessageHandlePtr: TOvrMessageHandlePtr
Returns
void