Compartilhar via


PushNotificationReceivedEventArgs.Canceled Evento

Definição

Gerado quando o sistema vai cancelar a tarefa em segundo plano iniciada para lidar com o evento PushReceived.

public:
 virtual event BackgroundTaskCanceledEventHandler ^ Canceled;
// Register
event_token Canceled(BackgroundTaskCanceledEventHandler const& handler) const;

// Revoke with event_token
void Canceled(event_token const* cookie) const;

// Revoke with event_revoker
PushNotificationReceivedEventArgs::Canceled_revoker Canceled(auto_revoke_t, BackgroundTaskCanceledEventHandler const& handler) const;
public event BackgroundTaskCanceledEventHandler Canceled;
function onCanceled(eventArgs) { /* Your code */ }
pushNotificationReceivedEventArgs.addEventListener("canceled", onCanceled);
pushNotificationReceivedEventArgs.removeEventListener("canceled", onCanceled);
- or -
pushNotificationReceivedEventArgs.oncanceled = onCanceled;
Public Custom Event Canceled As BackgroundTaskCanceledEventHandler 

Tipo de evento

Comentários

Para obter informações sobre os motivos pelos quais o sistema pode cancelar uma tarefa em segundo plano, consulte BackgroundTaskCancellationReason.

Aplica-se a