BackgroundTaskRegistration.Progress 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.
Anexa um manipulador de eventos de progresso à tarefa em segundo plano registrada.
public:
virtual event BackgroundTaskProgressEventHandler ^ Progress;
// Register
event_token Progress(BackgroundTaskProgressEventHandler const& handler) const;
// Revoke with event_token
void Progress(event_token const* cookie) const;
// Revoke with event_revoker
BackgroundTaskRegistration::Progress_revoker Progress(auto_revoke_t, BackgroundTaskProgressEventHandler const& handler) const;
public event BackgroundTaskProgressEventHandler Progress;
function onProgress(eventArgs) { /* Your code */ }
backgroundTaskRegistration.addEventListener("progress", onProgress);
backgroundTaskRegistration.removeEventListener("progress", onProgress);
- or -
backgroundTaskRegistration.onprogress = onProgress;
Public Custom Event Progress As BackgroundTaskProgressEventHandler Implements Progress