2 implementations of StartAsync
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\KestrelServerImpl.cs (1)
124
public async Task
StartAsync
<TContext>(IHttpApplication<TContext> application, CancellationToken cancellationToken) where TContext : notnull
KestrelServer.cs (1)
53
public Task
StartAsync
<TContext>(IHttpApplication<TContext> application, CancellationToken cancellationToken) where TContext : notnull
2 references to StartAsync
Microsoft.AspNetCore.Hosting (2)
GenericHost\GenericWebHostService.cs (1)
161
await Server.
StartAsync
(httpApplication, cancellationToken);
Internal\WebHost.cs (1)
147
await Server.
StartAsync
(hostingApp, cancellationToken).ConfigureAwait(false);