6 implementations of StopAsync
GetDocument.Insider (1)
Commands\GetDocumentCommandWorker.cs (1)
485public Task StopAsync(CancellationToken cancellationToken) => Task.CompletedTask;
Microsoft.AspNetCore.Server.HttpSys (1)
MessagePump.cs (1)
199public async Task StopAsync(CancellationToken cancellationToken)
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpServer.cs (1)
118public Task StopAsync(CancellationToken cancellationToken)
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\KestrelServerImpl.cs (1)
243public async Task StopAsync(CancellationToken cancellationToken)
KestrelServer.cs (1)
60public Task StopAsync(CancellationToken cancellationToken)
Microsoft.AspNetCore.TestHost (1)
TestServer.cs (1)
261Task IServer.StopAsync(CancellationToken cancellationToken)
2 references to StopAsync
Microsoft.AspNetCore.Hosting (2)
GenericHost\GenericWebHostService.cs (1)
201await Server.StopAsync(cancellationToken);
Internal\WebHost.cs (1)
299await Server.StopAsync(cancellationToken).ConfigureAwait(false);