4 implementations of StopAsync
Microsoft.Extensions.Hosting (2)
Internal\ConsoleLifetime.cs (1)
120public Task StopAsync(CancellationToken cancellationToken)
Internal\NullLifetime.cs (1)
19public Task StopAsync(CancellationToken cancellationToken)
Microsoft.Extensions.Hosting.Systemd (1)
SystemdLifetime.cs (1)
59public Task StopAsync(CancellationToken cancellationToken)
Microsoft.Extensions.Hosting.WindowsServices (1)
WindowsServiceLifetime.cs (1)
123public async Task StopAsync(CancellationToken cancellationToken)
1 reference to StopAsync
Microsoft.Extensions.Hosting (1)
Internal\Host.cs (1)
289await _hostLifetime.StopAsync(cancellationToken).ConfigureAwait(false);