1 write to Name
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\ConfigurationReader.cs (1)
278
Name
= name;
10 references to Name
Microsoft.AspNetCore.Server.Kestrel.Core (10)
Internal\ConfigurationReader.cs (7)
215
throw new InvalidOperationException(CoreStrings.FormatEndpointHasUnusedHttpsConfig(endpoint.
Name
, CertificateKey));
220
throw new InvalidOperationException(CoreStrings.FormatEndpointHasUnusedHttpsConfig(endpoint.
Name
, ClientCertificateModeKey));
225
throw new InvalidOperationException(CoreStrings.FormatEndpointHasUnusedHttpsConfig(endpoint.
Name
, SslProtocolsKey));
230
throw new InvalidOperationException(CoreStrings.FormatEndpointHasUnusedHttpsConfig(endpoint.
Name
, SniKey));
303
Name
== other.
Name
&&
312
public override int GetHashCode() => HashCode.Combine(
Name
, Url,
KestrelConfigurationLoader.cs (1)
407
if (EndpointConfigurations.TryGetValue(endpoint.
Name
, out var configureEndpoint))
TlsConfigurationLoader.cs (2)
73
var (serverCert, fullChain) = _certificateConfigLoader.LoadCertificate(endpoint.Certificate, endpoint.
Name
);
112
var sniOptionsSelector = new SniOptionsSelector(endpoint.
Name
, endpoint.Sni, _certificateConfigLoader,