BackgroundTaskRegistrationGroup.BackgroundActivated Evento

Definizione

Questo evento viene attivato quando viene avviata un'attività in background appartenente a un gruppo.

// 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) 

Tipo evento

Esempio

Esempio di attivazione in background Vedere lo scenario 6 per un esempio di attività raggruppato.

Commenti

I trigger in background associati a un gruppo attivano questo evento anziché avere un punto di ingresso attività. Per le attività in background a processo singolo che non definiscono un punto di ingresso nella registrazione dell'attività in background, questo evento è il punto di ingresso. Anziché chiamare il metodo OnBackgroundActivated dell'applicazione, viene chiamato l'evento collegato al gruppo.

Si applica a

Vedi anche