Compartir a través de


PushNotificationManager.PushReceived Evento

Definición

Se genera cuando la plataforma recibe una notificación push para la aplicación.

Nota

La clase PushNotificationManager tiene una dependencia en el paquete Singleton. Debido a esa dependencia, hay ciertas consideraciones que debe tener en cuenta si llama a estas API desde una aplicación independiente. Para obtener más información y detalles, consulte Dependencias de paquetes MSIX adicionales.

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

Tipo de evento

Comentarios

Para asegurarse de que se llama al controlador de eventos PushReceived dentro del proceso de la aplicación en ejecución, asegúrese de registrar el controlador para este evento antes de llamar a Register. De lo contrario, se iniciará un nuevo proceso para controlar la notificación.

Se aplica a