StoreQueueItem.Completed Ereignis

Definition

Wird ausgelöst, wenn der Download und die Installation des aktuellen Pakets in der Warteschlange abgeschlossen ist.

// Register
event_token Completed(TypedEventHandler<StoreQueueItem, StoreQueueItemCompletedEventArgs const&> const& handler) const;

// Revoke with event_token
void Completed(event_token const* cookie) const;

// Revoke with event_revoker
StoreQueueItem::Completed_revoker Completed(auto_revoke_t, TypedEventHandler<StoreQueueItem, StoreQueueItemCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<StoreQueueItem,StoreQueueItemCompletedEventArgs> Completed;
function onCompleted(eventArgs) { /* Your code */ }
storeQueueItem.addEventListener("completed", onCompleted);
storeQueueItem.removeEventListener("completed", onCompleted);
- or -
storeQueueItem.oncompleted = onCompleted;
Public Custom Event Completed As TypedEventHandler(Of StoreQueueItem, StoreQueueItemCompletedEventArgs) 

Ereignistyp

Gilt für:

Weitere Informationen