IHostedService 接口

定义

为主机所管理的对象定义方法。

public interface class IHostedService
public interface IHostedService
type IHostedService = interface
Public Interface IHostedService
派生

方法

StartAsync(CancellationToken)

当应用程序主机准备好启动服务时触发。

StopAsync(CancellationToken)

当应用程序主机执行正常关闭时触发。

扩展方法

StartAndStopAsync(IHostedService, CancellationToken)

启动并立即停止服务。

适用于