BackgroundService.ExecuteAsync(CancellationToken) Méthode
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.
Cette méthode est appelée quand le IHostedService démarre. L’implémentation doit retourner une tâche qui représente la durée de vie de la ou des opérations durables en cours d’exécution.
protected:
abstract System::Threading::Tasks::Task ^ ExecuteAsync(System::Threading::CancellationToken stoppingToken);
protected abstract System.Threading.Tasks.Task ExecuteAsync (System.Threading.CancellationToken stoppingToken);
abstract member ExecuteAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task
Protected MustOverride Function ExecuteAsync (stoppingToken As CancellationToken) As Task
Paramètres
- stoppingToken
- CancellationToken
Déclenchée quand StopAsync(CancellationToken) est appelé.
Retours
Task qui représente les opérations durables.
Exceptions
Le jeton d’annulation a été annulé. Cette exception est stockée dans la tâche retournée.
Remarques
Pour obtenir des instructions d’implémentation, consultez Worker Services dans .NET.