2 implementations of IsInitialized
Microsoft.AspNetCore.Server.Kestrel.Core (2)
HttpsConfigurationService.cs (1)
54bool IHttpsConfigurationService.IsInitialized => _isInitialized || _initializer is not null;
KestrelServer.cs (1)
80public bool IsInitialized => true;
4 references to IsInitialized
Microsoft.AspNetCore.Server.Kestrel.Core (4)
IHttpsConfigurationService.cs (1)
16/// scenarios. In normal usage, it will *always* be registered by only be <see cref="IsInitialized"/> if the
KestrelConfigurationLoader.cs (1)
351if (_httpsConfigurationService.IsInitialized && _httpsConfigurationService.LoadDefaultCertificate(ConfigurationReader) is CertificateAndConfig certPair)
KestrelServerOptions.cs (2)
295Debug.Assert(ApplicationServices.GetRequiredService<IHttpsConfigurationService>().IsInitialized, "HTTPS configuration should have been enabled"); 324if (!httpsConfigurationService.IsInitialized)