Compartir a través de


PhoneLineWatcher.LineRemoved Evento

Definición

Se produce cuando la instancia de PhoneLineWatcher detecta que se ha quitado una línea de teléfono del dispositivo.

// Register
event_token LineRemoved(TypedEventHandler<PhoneLineWatcher, PhoneLineWatcherEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
PhoneLineWatcher::LineRemoved_revoker LineRemoved(auto_revoke_t, TypedEventHandler<PhoneLineWatcher, PhoneLineWatcherEventArgs const&> const& handler) const;
public event TypedEventHandler<PhoneLineWatcher,PhoneLineWatcherEventArgs> LineRemoved;
function onLineRemoved(eventArgs) { /* Your code */ }
phoneLineWatcher.addEventListener("lineremoved", onLineRemoved);
phoneLineWatcher.removeEventListener("lineremoved", onLineRemoved);
- or -
phoneLineWatcher.onlineremoved = onLineRemoved;
Public Custom Event LineRemoved As TypedEventHandler(Of PhoneLineWatcher, PhoneLineWatcherEventArgs) 

Tipo de evento

Requisitos de Windows

Características de aplicaciones
phoneCallHistory phoneCallHistorySystem

Comentarios

En general, las líneas de telefonía móvil nunca se pueden quitar. Es más probable que se produzca este evento cuando se quita una línea VoIP, lo que suele ocurrir cuando se desinstalan las aplicaciones asociadas.

Se aplica a