PushNotificationChannel.PushNotificationReceived Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se genera cuando llega una notificación push a este canal.
// Register
event_token PushNotificationReceived(TypedEventHandler<PushNotificationChannel, PushNotificationReceivedEventArgs const&> const& handler) const;
// Revoke with event_token
void PushNotificationReceived(event_token const* cookie) const;
// Revoke with event_revoker
PushNotificationChannel::PushNotificationReceived_revoker PushNotificationReceived(auto_revoke_t, TypedEventHandler<PushNotificationChannel, PushNotificationReceivedEventArgs const&> const& handler) const;
public event TypedEventHandler<PushNotificationChannel,PushNotificationReceivedEventArgs> PushNotificationReceived;
function onPushNotificationReceived(eventArgs) { /* Your code */ }
pushNotificationChannel.addEventListener("pushnotificationreceived", onPushNotificationReceived);
pushNotificationChannel.removeEventListener("pushnotificationreceived", onPushNotificationReceived);
- or -
pushNotificationChannel.onpushnotificationreceived = onPushNotificationReceived;
Public Custom Event PushNotificationReceived As TypedEventHandler(Of PushNotificationChannel, PushNotificationReceivedEventArgs)
Tipo de evento
Requisitos de Windows
Características de aplicaciones |
internetClient
|
Ejemplos
En el ejemplo siguiente se muestra un agente de escucha para este evento, que invoca al controlador de eventos.
function listeningForPushNotification() {
if (channel) {
channel.addEventListener("pushnotificationreceived", pushNotificationReceivedHandler);
}
Comentarios
Windows Push Notification Services (WNS) envía este evento solo cuando la aplicación de destino de la notificación está en primer plano. Si la aplicación está suspendida, no recibe el evento .
Se aplica a
Consulte también
- Introducción a los Servicios de notificaciones de inserción de Windows (WNS)
- Ejemplo de notificaciones push y periódicas (archivado)
- Inicio rápido: Envío de una notificación de inserción
- Cómo solicitar, crear y guardar un canal de notificación
- Solicitud de servicio de notificaciones de inserción y encabezados de respuesta