IBackgroundTaskRegistration.Progress 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í.
Asocia un controlador de eventos de progreso a la tarea en segundo plano registrada.
public:
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
IBackgroundTaskRegistration::Progress_revoker Progress(auto_revoke_t, BackgroundTaskProgressEventHandler const& handler) const;
event BackgroundTaskProgressEventHandler Progress;
function onProgress(eventArgs) { /* Your code */ }
iBackgroundTaskRegistration.addEventListener("progress", onProgress);
iBackgroundTaskRegistration.removeEventListener("progress", onProgress);
- or -
iBackgroundTaskRegistration.onprogress = onProgress;
Event Progress As BackgroundTaskProgressEventHandler