AppNotificationManager.NotificationInvoked イベント

定義

ユーザーの操作によってアプリのアプリ通知が呼び出されたときに発生します。

注意

AppNotificationManager クラスは、Singleton パッケージに依存しています。 この依存関係のため、 自己完結型アプリからこれらの 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 を呼び出す前に、このイベントのハンドラーを登録してください。 それ以外の場合は、呼び出しを処理する新しいプロセスが起動されます。

適用対象

こちらもご覧ください