UserNotificationListener.NotificationChanged Evento

Definizione

Si verifica quando viene aggiunta o rimossa una notifica.

// Register
event_token NotificationChanged(TypedEventHandler<UserNotificationListener, UserNotificationChangedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
UserNotificationListener::NotificationChanged_revoker NotificationChanged(auto_revoke_t, TypedEventHandler<UserNotificationListener, UserNotificationChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<UserNotificationListener,UserNotificationChangedEventArgs> NotificationChanged;
function onNotificationChanged(eventArgs) { /* Your code */ }
userNotificationListener.addEventListener("notificationchanged", onNotificationChanged);
userNotificationListener.removeEventListener("notificationchanged", onNotificationChanged);
- or -
userNotificationListener.onnotificationchanged = onNotificationChanged;
Public Custom Event NotificationChanged As TypedEventHandler(Of UserNotificationListener, UserNotificationChangedEventArgs) 

Tipo evento

Si applica a