2 implementations of IsInitialized
Microsoft.AspNetCore.Server.Kestrel.Core (2)
HttpsConfigurationService.cs (1)
54
bool IHttpsConfigurationService.
IsInitialized
=> _isInitialized || _initializer is not null;
KestrelServer.cs (1)
80
public 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)
351
if (_httpsConfigurationService.
IsInitialized
&& _httpsConfigurationService.LoadDefaultCertificate(ConfigurationReader) is CertificateAndConfig certPair)
KestrelServerOptions.cs (2)
295
Debug.Assert(ApplicationServices.GetRequiredService<IHttpsConfigurationService>().
IsInitialized
, "HTTPS configuration should have been enabled");
324
if (!httpsConfigurationService.
IsInitialized
)