StoreQueueItem.StatusChanged Event
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.
Raised when the status of the current package in the queue changes.
// 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)
Event Type
TypedEventHandler<StoreQueueItem,IInspectable>