BackgroundTaskRegistrationGroup.BackgroundActivated É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.
Cet événement est déclenché lorsqu’une tâche en arrière-plan qui appartient à un groupe démarre.
// Register
event_token BackgroundActivated(TypedEventHandler<BackgroundTaskRegistrationGroup, BackgroundActivatedEventArgs const&> const& handler) const;
// Revoke with event_token
void BackgroundActivated(event_token const* cookie) const;
// Revoke with event_revoker
BackgroundTaskRegistrationGroup::BackgroundActivated_revoker BackgroundActivated(auto_revoke_t, TypedEventHandler<BackgroundTaskRegistrationGroup, BackgroundActivatedEventArgs const&> const& handler) const;
public event TypedEventHandler<BackgroundTaskRegistrationGroup,BackgroundActivatedEventArgs> BackgroundActivated;
function onBackgroundActivated(eventArgs) { /* Your code */ }
backgroundTaskRegistrationGroup.addEventListener("backgroundactivated", onBackgroundActivated);
backgroundTaskRegistrationGroup.removeEventListener("backgroundactivated", onBackgroundActivated);
- or -
backgroundTaskRegistrationGroup.onbackgroundactivated = onBackgroundActivated;
Public Custom Event BackgroundActivated As TypedEventHandler(Of BackgroundTaskRegistrationGroup, BackgroundActivatedEventArgs)
Type d'événement
Exemples
Exemple d’activation en arrière-plan Consultez le scénario 6 pour obtenir un exemple de tâche groupée.
Remarques
Les déclencheurs d’arrière-plan associés à un groupe déclenchent cet événement au lieu d’avoir un point d’entrée de tâche. Pour les tâches en arrière-plan à processus unique qui ne définissent pas de point d’entrée dans leur inscription de tâche en arrière-plan, cet événement est le point d’entrée. Au lieu d’appeler la méthode OnBackgroundActivated de l’application, l’événement attaché au groupe est appelé.