1 write to ConfigurationLoader
Microsoft.AspNetCore.Server.Kestrel.Core (1)
KestrelServerOptions.cs (1)
469
ConfigurationLoader
= loader;
12 references to ConfigurationLoader
Microsoft.AspNetCore.Server.Kestrel.Core (12)
Internal\KestrelServerImpl.cs (7)
305
if (Options.
ConfigurationLoader
?.ReloadOnChange == true && (!_serverAddresses.PreferHostingUrls || _serverAddresses.InternalCollection.Count == 0))
307
reloadToken = Options.
ConfigurationLoader
.GetReloadToken();
310
Options.
ConfigurationLoader
?.LoadInternal();
311
Options.
ConfigurationLoader
?.ProcessEndpointsToAdd();
345
Debug.Assert(Options.
ConfigurationLoader
!= null, "Rebind can only happen when there is a ConfigurationLoader.");
347
reloadToken = Options.
ConfigurationLoader
.GetReloadToken();
348
var (endpointsToStop, endpointsToStart) = Options.
ConfigurationLoader
.Reload();
KestrelServerOptions.cs (4)
267
ConfigurationLoader
?.ApplyEndpointDefaults(listenOptions);
282
ConfigurationLoader
?.ApplyHttpsDefaults(httpsOptions);
303
if (
ConfigurationLoader
?.DefaultCertificate is X509Certificate2 certificateFromLoader)
306
if (
ConfigurationLoader
?.DefaultCertificateChain is X509Certificate2Collection certificateChainFromLoader)
ListenOptionsHttpsExtensions.cs (1)
174
listenOptions.KestrelServerOptions.
ConfigurationLoader
?.LoadInternal();