![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <IPortalPackageInstaller.h>
Inheritance diagram for IPortalPackageInstaller:Public Member Functions | |
| virtual TAsyncResult< bool > | Install (const FString &Path, const FString &AppName, const FString &BuildLabel)=0 |
| virtual TAsyncResult< bool > | Uninstall (const FString &Path, const FString &AppName, const FString &BuildLabel, bool RemoveUserFiles)=0 |
| virtual | ~IPortalPackageInstaller () |
Public Member Functions inherited from IPortalService | |
| virtual | ~IPortalService () |
| virtual bool | IsAvailable () const =0 |
Interface for package installer services.
|
inlinevirtual |
Virtual destructor.
|
pure virtual |
Install the specified package using the given request object.
| AppName | The name of the application to install. |
| BuildLabel | The application's build label. |
Implemented in FPortalPackageInstallerProxy.
|
pure virtual |
Attempts to uninstall the specified package using the given request object.
| Path | The path at which the package is installed. |
| AppName | The name of the application to uninstall. |
| BuildLabel | The application's build label. |
| RemoveUserFiles | Whether user created files should be removed as well. |
Implemented in FPortalPackageInstallerProxy.