Compartilhar via


PushNotificationChannel.PushNotificationReceived Evento

Definição

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