Partager via


BackgroundTaskRegistrationGroup.BackgroundActivated Événement

Définition

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é.

S’applique à

Voir aussi