PhoneLineWatcher.Stopped Event

Definition

Occurs when the PhoneLineWatcher instance stops monitoring the device for changes to the phone lines.

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

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

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

Event Type

Windows requirements

App capabilities
phoneCallHistory phoneCallHistorySystem

Applies to