2 writes to Certificate
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\ConfigurationReader.cs (1)
112Certificate = new CertificateConfig(endpointConfig.GetSection(CertificateKey))
TlsConfigurationLoader.cs (1)
83endpoint.Certificate = defaultCertificateConfig;
10 references to Certificate
Microsoft.AspNetCore.Server.Kestrel.Core (10)
Internal\ConfigurationReader.cs (6)
213if (endpoint.Certificate != null && (endpoint.Certificate.IsFileCert || endpoint.Certificate.IsStoreCert)) 307Certificate == other.Certificate && 314Certificate, ClientCertificateMode ?? Https.ClientCertificateMode.NoCertificate, Sni.Count, _configSectionClone);
KestrelConfigurationLoader.cs (3)
395Debug.Assert(o.EndpointConfig?.Certificate?.FileHasChanged != true, "Preserving an endpoint with file changes"); 461var certConfig = endpointConfig.Certificate; 485var certConfig = endpointConfig.Certificate;
TlsConfigurationLoader.cs (1)
73var (serverCert, fullChain) = _certificateConfigLoader.LoadCertificate(endpoint.Certificate, endpoint.Name);