1 write to Name
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\ConfigurationReader.cs (1)
278Name = name;
14 references to Name
Microsoft.AspNetCore.Server.Kestrel.Core (10)
Internal\ConfigurationReader.cs (7)
215throw new InvalidOperationException(CoreStrings.FormatEndpointHasUnusedHttpsConfig(endpoint.Name, CertificateKey)); 220throw new InvalidOperationException(CoreStrings.FormatEndpointHasUnusedHttpsConfig(endpoint.Name, ClientCertificateModeKey)); 225throw new InvalidOperationException(CoreStrings.FormatEndpointHasUnusedHttpsConfig(endpoint.Name, SslProtocolsKey)); 230throw new InvalidOperationException(CoreStrings.FormatEndpointHasUnusedHttpsConfig(endpoint.Name, SniKey)); 303Name == other.Name && 312public override int GetHashCode() => HashCode.Combine(Name, Url,
KestrelConfigurationLoader.cs (1)
411if (EndpointConfigurations.TryGetValue(endpoint.Name, out var configureEndpoint))
TlsConfigurationLoader.cs (2)
73var (serverCert, fullChain) = _certificateConfigLoader.LoadCertificate(endpoint.Certificate, endpoint.Name); 112var sniOptionsSelector = new SniOptionsSelector(endpoint.Name, endpoint.Sni, _certificateConfigLoader,
Microsoft.AspNetCore.Server.Kestrel.Tests (4)
ConfigurationReaderTests.cs (4)
177Assert.Equal("End1", end1.Name); 185Assert.Equal("End2", end2.Name); 193Assert.Equal("End3", end3.Name); 206Assert.Equal("End4", end4.Name);