PhoneLineWatcher.LineRemoved Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
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.