PushNotificationChannel.PushNotificationReceived Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Gerado quando uma notificação por push chega neste 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 do Windows
Funcionalidades do aplicativo |
internetClient
|
Exemplos
O exemplo a seguir mostra um ouvinte para esse evento, que invoca o manipulador de eventos.
function listeningForPushNotification() {
if (channel) {
channel.addEventListener("pushnotificationreceived", pushNotificationReceivedHandler);
}
Comentários
O WNS (Serviços de Notificação por Push do Windows) envia esse evento somente quando o aplicativo de destino da notificação está em primeiro plano. Se o aplicativo estiver suspenso, ele não receberá o evento.
Aplica-se a
Confira também
- Visão geral dos Serviços de Notificação por Push do Windows (WNS)
- Exemplo de notificações por push e periódicas (arquivadas)
- Guia de início rápido: enviando uma notificação por push
- Como solicitar, criar e salvar um canal de notificação
- Cabeçalhos de solicitação e resposta de serviço de notificação por push