StoreContext.SetInstallOrderForAssociatedStoreQueueItemsAsync Method

Definition

Sets the order in which to install the specified packages in the download and installation queue for the current app.

public:
 virtual IAsyncOperation<IVectorView<StoreQueueItem ^> ^> ^ SetInstallOrderForAssociatedStoreQueueItemsAsync(IIterable<StoreQueueItem ^> ^ items) = SetInstallOrderForAssociatedStoreQueueItemsAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<StoreQueueItem>> SetInstallOrderForAssociatedStoreQueueItemsAsync(IIterable<StoreQueueItem> const& items);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<StoreQueueItem>> SetInstallOrderForAssociatedStoreQueueItemsAsync(IEnumerable<StoreQueueItem> items);
function setInstallOrderForAssociatedStoreQueueItemsAsync(items)
Public Function SetInstallOrderForAssociatedStoreQueueItemsAsync (items As IEnumerable(Of StoreQueueItem)) As IAsyncOperation(Of IReadOnlyList(Of StoreQueueItem))

Parameters

items

IIterable<StoreQueueItem>

IEnumerable<StoreQueueItem>

A list of StoreQueueItem objects that represents the packages in the install queue, in the order in which you want the packages to be installed.

Returns

An asynchronous operation that, on successful completion, returns the list of StoreQueueItem objects in the order in which the corresponding packages in the queue were set to be installed.

Attributes

Windows requirements

Device family
Windows 10, version 1809 (introduced in 10.0.17763.0)
API contract
Windows.Services.Store.StoreContract (introduced in v4.0)

Applies to

See also