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