Поделиться через


AppNotificationManager.NotificationInvoked Событие

Определение

Возникает при вызове уведомления приложения для приложения посредством взаимодействия с пользователем.

Примечание

Класс AppNotificationManager зависит от одноэлементного пакета. Из-за этой зависимости следует учитывать некоторые аспекты, если вы вызываете эти API из автономного приложения. Дополнительные сведения и особенности см. в разделе Зависимости от дополнительных пакетов MSIX.

// 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) 

Тип события

Комментарии

Чтобы убедиться, что обработчик событий NotificationInvoked вызывается в процессе запущенного приложения, обязательно зарегистрируйте обработчик для этого события перед вызовом register. В противном случае будет запущен новый процесс для обработки вызова.

Применяется к

См. также раздел