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 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é quand l’hôte d’application est prêt à démarrer le service. (Hérité de IHostedService) |
StartedAsync(CancellationToken) |
Déclenché après StartAsync(CancellationToken). |
StartingAsync(CancellationToken) |
Déclenchée avant StartAsync(CancellationToken). |
StopAsync(CancellationToken) |
Déclenché quand l’hôte d’application effectue un arrêt normal. (Hérité de IHostedService) |
StoppedAsync(CancellationToken) |
Déclenché après StopAsync(CancellationToken). |
StoppingAsync(CancellationToken) |
Déclenchée avant StopAsync(CancellationToken). |
Méthodes d’extension
StartAndStopAsync(IHostedService, CancellationToken) |
Démarre et arrête immédiatement le service. |