8 implementations of StopAsync
Microsoft.AspNetCore.Http.Extensions.Tests (1)
ValidationsGenerator\ValidationsGeneratorTestBase.cs (1)
164public Task StopAsync(CancellationToken cancellationToken) => Task.CompletedTask;
Microsoft.AspNetCore.OpenApi.SourceGenerators.Tests (1)
SnapshotTestHelper.cs (1)
212public Task StopAsync(CancellationToken cancellationToken) => Task.CompletedTask;
Microsoft.AspNetCore.TestHost (1)
NoopHostLifetime.cs (1)
10public Task StopAsync(CancellationToken cancellationToken)
Microsoft.AspNetCore.Tests (1)
WebApplicationTests.cs (1)
3030public Task StopAsync(CancellationToken cancellationToken)
Microsoft.Extensions.Hosting (2)
Internal\ConsoleLifetime.cs (1)
117public 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)
120public async Task StopAsync(CancellationToken cancellationToken)
1 reference to StopAsync
Microsoft.Extensions.Hosting (1)
Internal\Host.cs (1)
277await _hostLifetime.StopAsync(cancellationToken).ConfigureAwait(false);