AppResourceGroupInfoWatcher.Stopped Event

Definition

Event that fires when this AppResourceGroupInfoWatcher stops watching for resource group changes.

// Register
event_token Stopped(TypedEventHandler<AppResourceGroupInfoWatcher, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
AppResourceGroupInfoWatcher::Stopped_revoker Stopped(auto_revoke_t, TypedEventHandler<AppResourceGroupInfoWatcher, IInspectable const&> const& handler) const;
public event TypedEventHandler<AppResourceGroupInfoWatcher,object> Stopped;
function onStopped(eventArgs) { /* Your code */ }
appResourceGroupInfoWatcher.addEventListener("stopped", onStopped);
appResourceGroupInfoWatcher.removeEventListener("stopped", onStopped);
- or -
appResourceGroupInfoWatcher.onstopped = onStopped;
Public Custom Event Stopped As TypedEventHandler(Of AppResourceGroupInfoWatcher, Object) 

Event Type

Windows requirements

App capabilities
appDiagnostics

Applies to

See also