6 implementations of StartAsync
GetDocument.Insider (1)
Commands\GetDocumentCommandWorker.cs (1)
484public Task StartAsync<TContext>(IHttpApplication<TContext> application, CancellationToken cancellationToken) => Task.CompletedTask;
Microsoft.AspNetCore.Server.HttpSys (1)
MessagePump.cs (1)
71public Task StartAsync<TContext>(IHttpApplication<TContext> application, CancellationToken cancellationToken) where TContext : notnull
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpServer.cs (1)
96public unsafe Task StartAsync<TContext>(IHttpApplication<TContext> application, CancellationToken cancellationToken) where TContext : notnull
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\KestrelServerImpl.cs (1)
124public async Task StartAsync<TContext>(IHttpApplication<TContext> application, CancellationToken cancellationToken) where TContext : notnull
KestrelServer.cs (1)
53public Task StartAsync<TContext>(IHttpApplication<TContext> application, CancellationToken cancellationToken) where TContext : notnull
Microsoft.AspNetCore.TestHost (1)
TestServer.cs (1)
251Task IServer.StartAsync<TContext>(IHttpApplication<TContext> application, CancellationToken cancellationToken)
2 references to StartAsync
Microsoft.AspNetCore.Hosting (2)
GenericHost\GenericWebHostService.cs (1)
161await Server.StartAsync(httpApplication, cancellationToken);
Internal\WebHost.cs (1)
147await Server.StartAsync(hostingApp, cancellationToken).ConfigureAwait(false);