Partager via


ContactList.ContactChanged Événement

Définition

Se produit lorsqu’un contact de cette liste de contacts a été modifié.

// Register
event_token ContactChanged(TypedEventHandler<ContactList, ContactChangedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
ContactList::ContactChanged_revoker ContactChanged(auto_revoke_t, TypedEventHandler<ContactList, ContactChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<ContactList,ContactChangedEventArgs> ContactChanged;
function onContactChanged(eventArgs) { /* Your code */ }
contactList.addEventListener("contactchanged", onContactChanged);
contactList.removeEventListener("contactchanged", onContactChanged);
- or -
contactList.oncontactchanged = onContactChanged;
Public Custom Event ContactChanged As TypedEventHandler(Of ContactList, ContactChangedEventArgs) 

Type d'événement

Configuration requise pour Windows

Fonctionnalités de l’application
contactsSystem

S’applique à