6 references to AddressBinder
Microsoft.AspNetCore.Server.Kestrel.Core (6)
IHttpsConfigurationService.cs (1)
82
/// For use during address binding (esp in <see cref="
AddressBinder
"/>).
Internal\KestrelServerImpl.cs (1)
309
await
AddressBinder
.BindAsync(Options.GetListenOptions(), AddressBindContext!, _httpsConfigurationService.UseHttpsWithDefaults, cancellationToken).ConfigureAwait(false);
KestrelConfigurationLoader.cs (1)
359
var listenOptions =
AddressBinder
.ParseAddress(endpoint.Url, out var https);
ListenOptions.cs (1)
224
await
AddressBinder
.BindEndpointAsync(this, context, cancellationToken).ConfigureAwait(false);
LocalhostListenOptions.cs (2)
36
await
AddressBinder
.BindEndpointAsync(v4Options, context, cancellationToken).ConfigureAwait(false);
50
await
AddressBinder
.BindEndpointAsync(v6Options, context, cancellationToken).ConfigureAwait(false);