UserWatcher.Stopped 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 the user watcher has stopped.
// Register
event_token Stopped(TypedEventHandler<UserWatcher, IInspectable const&> const& handler) const;
// Revoke with event_token
void Stopped(event_token const* cookie) const;
// Revoke with event_revoker
UserWatcher::Stopped_revoker Stopped(auto_revoke_t, TypedEventHandler<UserWatcher, IInspectable const&> const& handler) const;
public event TypedEventHandler<UserWatcher,object> Stopped;
function onStopped(eventArgs) { /* Your code */ }
userWatcher.addEventListener("stopped", onStopped);
userWatcher.removeEventListener("stopped", onStopped);
- or -
userWatcher.onstopped = onStopped;
Public Custom Event Stopped As TypedEventHandler(Of UserWatcher, Object)
Event Type
TypedEventHandler<UserWatcher,IInspectable>