IBackgroundTaskRegistration.Progress Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Joint un gestionnaire d’événements de progression à la tâche en arrière-plan inscrite.
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