IHostedLifecycleService 介面
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
定義在 和 StopAsync(CancellationToken)之前或之後StartAsync(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
- 實作
方法
StartAsync(CancellationToken) |
當應用程式主機準備好啟動服務時觸發。 (繼承來源 IHostedService) |
StartedAsync(CancellationToken) | |
StartingAsync(CancellationToken) | |
StopAsync(CancellationToken) |
當應用程式主機執行順利關機時觸發。 (繼承來源 IHostedService) |
StoppedAsync(CancellationToken) |
在之後 StopAsync(CancellationToken)觸發。 |
StoppingAsync(CancellationToken) |
在之前 StopAsync(CancellationToken)觸發。 |
擴充方法
StartAndStopAsync(IHostedService, CancellationToken) |
啟動並立即停止服務。 |