1 instantiation of EndpointConfig
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\ConfigurationReader.cs (1)
103var endpoint = new EndpointConfig(
29 references to EndpointConfig
Microsoft.AspNetCore.Server.Kestrel.Core (29)
HttpsConfigurationService.cs (2)
78EndpointConfig endpoint, 88public ListenOptions UseHttpsWithSni(ListenOptions listenOptions, HttpsConnectionAdapterOptions httpsOptions, EndpointConfig endpoint)
IHttpsConfigurationService.cs (2)
44EndpointConfig endpoint, 57ListenOptions UseHttpsWithSni(ListenOptions listenOptions, HttpsConnectionAdapterOptions httpsOptions, EndpointConfig endpoint);
Internal\ConfigurationReader.cs (11)
28private IEnumerable<EndpointConfig>? _endpoints; 37public IEnumerable<EndpointConfig> Endpoints => _endpoints ??= ReadEndpoints(); 68private IEnumerable<EndpointConfig> ReadEndpoints() 70var endpoints = new List<EndpointConfig>(); 103var endpoint = new EndpointConfig( 211internal static void ThrowIfContainsHttpsOnlyConfiguration(EndpointConfig endpoint) 302obj is EndpointConfig other && 316public static bool operator ==(EndpointConfig? lhs, EndpointConfig? rhs) => lhs is null ? rhs is null : lhs.Equals(rhs); 317public static bool operator !=(EndpointConfig? lhs, EndpointConfig? rhs) => !(lhs == rhs);
Internal\Infrastructure\TransportManager.cs (5)
36public async Task<EndPoint> BindAsync(EndPoint endPoint, ConnectionDelegate connectionDelegate, EndpointConfig? endpointConfig, CancellationToken cancellationToken) 98private void StartAcceptLoop<T>(IConnectionListener<T> connectionListener, Func<T, Task> connectionDelegate, EndpointConfig? endpointConfig) where T : BaseConnectionContext 107public Task StopEndpointsAsync(List<EndpointConfig> endpointsToStop, CancellationToken cancellationToken) 171public ActiveTransport(IConnectionListenerBase transport, Task acceptLoopTask, TransportConnectionManager transportConnectionManager, EndpointConfig? endpointConfig = null) 183public EndpointConfig? EndpointConfig { get; }
Internal\KestrelServerImpl.cs (1)
362var configsToStop = new List<EndpointConfig>(endpointsToStop.Count);
KestrelConfigurationLoader.cs (3)
357foreach (var endpoint in ConfigurationReader.Endpoints) 455var endpointConfig = endpointToStart.EndpointConfig; 479var endpointConfig = endpointToStop.EndpointConfig;
KestrelServer.cs (2)
99EndpointConfig endpoint, 107public ListenOptions UseHttpsWithSni(ListenOptions listenOptions, HttpsConnectionAdapterOptions httpsOptions, EndpointConfig endpoint)
ListenOptions.cs (1)
51internal EndpointConfig? EndpointConfig { get; set; }
TlsConfigurationLoader.cs (2)
45EndpointConfig endpoint, 95EndpointConfig endpoint)