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 之前为此事件注册处理程序。 否则,将启动一个新进程来处理调用。

适用于

另请参阅