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)
29internal 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)
157await httpDefault.BindAsync(context, cancellationToken).ConfigureAwait(false); 219await endpoint.BindAsync(context, cancellationToken).ConfigureAwait(false); 247await options.BindAsync(context, cancellationToken).ConfigureAwait(false);
Internal\KestrelServerImpl.cs (1)
388await listenOption.BindAsync(AddressBindContext!, _stopCts.Token).ConfigureAwait(false);