2 implementations of StartAsync
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
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);