AppInstallManager.ItemStatusChanged 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.
Occurs when the status of an app in the installation queue has changed.
// Register
event_token ItemStatusChanged(TypedEventHandler<AppInstallManager, AppInstallManagerItemEventArgs const&> const& handler) const;
// Revoke with event_token
void ItemStatusChanged(event_token const* cookie) const;
// Revoke with event_revoker
AppInstallManager::ItemStatusChanged_revoker ItemStatusChanged(auto_revoke_t, TypedEventHandler<AppInstallManager, AppInstallManagerItemEventArgs const&> const& handler) const;
public event TypedEventHandler<AppInstallManager,AppInstallManagerItemEventArgs> ItemStatusChanged;
function onItemStatusChanged(eventArgs) { /* Your code */ }
appInstallManager.addEventListener("itemstatuschanged", onItemStatusChanged);
appInstallManager.removeEventListener("itemstatuschanged", onItemStatusChanged);
- or -
appInstallManager.onitemstatuschanged = onItemStatusChanged;
Public Custom Event ItemStatusChanged As TypedEventHandler(Of AppInstallManager, AppInstallManagerItemEventArgs)
Event Type
Windows requirements
App capabilities |
runFullTrust
|