2 overrides of BindAsync
Microsoft.AspNetCore.Server.Kestrel.Core (2)
AnyIPListenOptions.cs (1)
18internal override async Task BindAsync(AddressBindContext context, CancellationToken cancellationToken)
LocalhostListenOptions.cs (1)
38internal override async Task BindAsync(AddressBindContext context, CancellationToken cancellationToken)
6 references to BindAsync
Microsoft.AspNetCore.Server.Kestrel.Core (6)
AnyIPListenOptions.cs (2)
25await base.BindAsync(context, cancellationToken).ConfigureAwait(false); 42await base.BindAsync(context, cancellationToken).ConfigureAwait(false);
Internal\AddressBinder.cs (3)
179await httpDefault.BindAsync(context, cancellationToken).ConfigureAwait(false); 241await endpoint.BindAsync(context, cancellationToken).ConfigureAwait(false); 269await options.BindAsync(context, cancellationToken).ConfigureAwait(false);
Internal\KestrelServerImpl.cs (1)
392await listenOption.BindAsync(AddressBindContext!, _stopCts.Token).ConfigureAwait(false);