IHostedLifecycleService Interface
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.
Définit les méthodes qui sont exécutées avant ou après StartAsync(CancellationToken) et StopAsync(CancellationToken).
public interface class IHostedLifecycleService : Microsoft::Extensions::Hosting::IHostedService
public interface IHostedLifecycleService : Microsoft.Extensions.Hosting.IHostedService
type IHostedLifecycleService = interface
interface IHostedService
Public Interface IHostedLifecycleService
Implements IHostedService
- Implémente
Méthodes
StartAsync(CancellationToken) |
Déclenché lorsque l’hôte de l’application est prêt à démarrer le service. (Hérité de IHostedService) |
StartedAsync(CancellationToken) |
Déclenché après StartAsync(CancellationToken). |
StartingAsync(CancellationToken) |
Déclenché avant StartAsync(CancellationToken). |
StopAsync(CancellationToken) |
Déclenché lorsque l’hôte de l’application effectue un arrêt approprié. (Hérité de IHostedService) |
StoppedAsync(CancellationToken) |
Déclenché après StopAsync(CancellationToken). |
StoppingAsync(CancellationToken) |
Déclenché avant StopAsync(CancellationToken). |
Méthodes d’extension
StartAndStopAsync(IHostedService, CancellationToken) |
Démarre et arrête immédiatement le service. |