AppResourceGroupInfoWatcher.Removed 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.
Fires when one of the resource groups has been removed from the list of AppResourceGroupInfos in the package.
// Register
event_token Removed(TypedEventHandler<AppResourceGroupInfoWatcher, AppResourceGroupInfoWatcherEventArgs const&> const& handler) const;
// Revoke with event_token
void Removed(event_token const* cookie) const;
// Revoke with event_revoker
AppResourceGroupInfoWatcher::Removed_revoker Removed(auto_revoke_t, TypedEventHandler<AppResourceGroupInfoWatcher, AppResourceGroupInfoWatcherEventArgs const&> const& handler) const;
public event TypedEventHandler<AppResourceGroupInfoWatcher,AppResourceGroupInfoWatcherEventArgs> Removed;
function onRemoved(eventArgs) { /* Your code */ }
appResourceGroupInfoWatcher.addEventListener("removed", onRemoved);
appResourceGroupInfoWatcher.removeEventListener("removed", onRemoved);
- or -
appResourceGroupInfoWatcher.onremoved = onRemoved;
Public Custom Event Removed As TypedEventHandler(Of AppResourceGroupInfoWatcher, AppResourceGroupInfoWatcherEventArgs)
Event Type
Windows requirements
App capabilities |
appDiagnostics
|