AppNotificationManager.NotificationInvoked É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.
Déclenché lorsqu’une notification d’application pour l’application est appelée par le biais d’une interaction utilisateur.
Notes
La classe AppNotificationManager a une dépendance sur le package Singleton. En raison de cette dépendance, certaines considérations doivent être prises en compte si vous appelez ces API à partir d’une application autonome. Pour plus d’informations et pour plus d’informations, consultez Dépendances sur des packages MSIX supplémentaires.
// Register
event_token NotificationInvoked(TypedEventHandler<AppNotificationManager, AppNotificationActivatedEventArgs const&> const& handler) const;
// Revoke with event_token
void NotificationInvoked(event_token const* cookie) const;
// Revoke with event_revoker
AppNotificationManager::NotificationInvoked_revoker NotificationInvoked(auto_revoke_t, TypedEventHandler<AppNotificationManager, AppNotificationActivatedEventArgs const&> const& handler) const;
public event TypedEventHandler<AppNotificationManager,AppNotificationActivatedEventArgs> NotificationInvoked;
function onNotificationInvoked(eventArgs) { /* Your code */ }
appNotificationManager.addEventListener("notificationinvoked", onNotificationInvoked);
appNotificationManager.removeEventListener("notificationinvoked", onNotificationInvoked);
- or -
appNotificationManager.onnotificationinvoked = onNotificationInvoked;
Public Custom Event NotificationInvoked As TypedEventHandler(Of AppNotificationManager, AppNotificationActivatedEventArgs)
Type d'événement
Remarques
Pour vous assurer que le gestionnaire d’événements NotificationInvoked est appelé dans le processus de l’application en cours d’exécution, veillez à inscrire le gestionnaire pour cet événement avant d’appeler Register. Sinon, un nouveau processus sera lancé pour gérer l’appel.