PhoneLineWatcher.LineRemoved Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsque l’instance PhoneLineWatcher détecte qu’une ligne téléphonique a été supprimée de l’appareil.
// 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)
Type d'événement
Configuration requise pour Windows
Fonctionnalités de l’application |
phoneCallHistory
phoneCallHistorySystem
|
Remarques
En général, les lignes cellulaires ne peuvent jamais être supprimées. Cet événement est plus susceptible de se produire lorsqu’une ligne VoIP est supprimée, ce qui se produit généralement lorsque les applications associées sont désinstallées.