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)
309await AddressBinder.BindAsync(Options.GetListenOptions(), AddressBindContext!, _httpsConfigurationService.UseHttpsWithDefaults, cancellationToken).ConfigureAwait(false);
KestrelConfigurationLoader.cs (1)
359var listenOptions = AddressBinder.ParseAddress(endpoint.Url, out var https);
ListenOptions.cs (1)
224await AddressBinder.BindEndpointAsync(this, context, cancellationToken).ConfigureAwait(false);
LocalhostListenOptions.cs (2)
36await AddressBinder.BindEndpointAsync(v4Options, context, cancellationToken).ConfigureAwait(false); 50await AddressBinder.BindEndpointAsync(v6Options, context, cancellationToken).ConfigureAwait(false);