InstallationManager.GetPendingPackageInstalls Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns all of the app installations currently in progress.
public:
static IIterable<IAsyncOperationWithProgress<PackageInstallResult ^, unsigned int> ^> ^ GetPendingPackageInstalls();
static IIterable<IAsyncOperationWithProgress<PackageInstallResult, uint32_t>> GetPendingPackageInstalls();
public static IEnumerable<IAsyncOperationWithProgress<PackageInstallResult,uint>> GetPendingPackageInstalls();
function getPendingPackageInstalls()
Public Shared Function GetPendingPackageInstalls () As IEnumerable(Of IAsyncOperationWithProgress(Of PackageInstallResult, UInteger))
Returns
IIterable<IAsyncOperationWithProgress<PackageInstallResult,UInt32>>
IEnumerable<IAsyncOperationWithProgress<PackageInstallResult,UInt32>>
Windows.Foundation.Collections.IIterable<Windows.Foundation.IAsyncOperationWithProgress<Windows.Phone.Management.Deployment.PackageInstallResult,unsigned int>>
IIterable<IAsyncOperationWithProgress<PackageInstallResult,uint32_t>>
A list of the app installations currently in progress. The list contains the PackageInstallResult (pending) for each installation, which are wrapped by the async operation class (IAsyncOperationWithProgress). See Asynchronous programming for more info on how to get progress info.