PushNotificationManager.PushReceived 이벤트
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
플랫폼에서 앱에 대한 푸시 알림을 받을 때 발생합니다.
메모
PushNotificationManager 클래스는 Singleton 패키지종속됩니다. 이러한 종속성 때문에 자체 포함 앱이러한 API를 호출하는 경우 주의해야 할 특정 고려 사항이 있습니다. 자세한 정보 및 세부 정보는추가 MSIX 패키지에 대한
// Register
event_token PushReceived(TypedEventHandler<PushNotificationManager, PushNotificationReceivedEventArgs const&> const& handler) const;
// Revoke with event_token
void PushReceived(event_token const* cookie) const;
// Revoke with event_revoker
PushNotificationManager::PushReceived_revoker PushReceived(auto_revoke_t, TypedEventHandler<PushNotificationManager, PushNotificationReceivedEventArgs const&> const& handler) const;
public event TypedEventHandler<PushNotificationManager,PushNotificationReceivedEventArgs> PushReceived;
function onPushReceived(eventArgs) { /* Your code */ }
pushNotificationManager.addEventListener("pushreceived", onPushReceived);
pushNotificationManager.removeEventListener("pushreceived", onPushReceived);
- or -
pushNotificationManager.onpushreceived = onPushReceived;
Public Custom Event PushReceived As TypedEventHandler(Of PushNotificationManager, PushNotificationReceivedEventArgs)
이벤트 유형
설명
실행 중인 앱의 프로세스 내에서 PushReceived 이벤트 처리기가 호출되도록 하려면 Register호출하기 전에 이 이벤트에 대한 처리기를 등록해야 합니다. 그렇지 않으면 알림을 처리하기 위한 새 프로세스가 시작됩니다.