StoreQueueItem.StatusChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Generato quando lo stato del pacchetto corrente nella coda cambia.
// Register
event_token StatusChanged(TypedEventHandler<StoreQueueItem, IInspectable const&> const& handler) const;
// Revoke with event_token
void StatusChanged(event_token const* cookie) const;
// Revoke with event_revoker
StoreQueueItem::StatusChanged_revoker StatusChanged(auto_revoke_t, TypedEventHandler<StoreQueueItem, IInspectable const&> const& handler) const;
public event TypedEventHandler<StoreQueueItem,object> StatusChanged;
function onStatusChanged(eventArgs) { /* Your code */ }
storeQueueItem.addEventListener("statuschanged", onStatusChanged);
storeQueueItem.removeEventListener("statuschanged", onStatusChanged);
- or -
storeQueueItem.onstatuschanged = onStatusChanged;
Public Custom Event StatusChanged As TypedEventHandler(Of StoreQueueItem, Object)
Tipo evento
TypedEventHandler<StoreQueueItem,IInspectable>