2 implementations of IHttpsConfigurationService
Microsoft.AspNetCore.Server.Kestrel.Core (2)
HttpsConfigurationService.cs (1)
21internal sealed class HttpsConfigurationService : IHttpsConfigurationService
KestrelServer.cs (1)
78private sealed class SimpleHttpsConfigurationService : IHttpsConfigurationService
16 references to IHttpsConfigurationService
Microsoft.AspNetCore.Server.Kestrel.Core (16)
HttpsConfigurationService.cs (4)
54bool IHttpsConfigurationService.IsInitialized => _isInitialized || _initializer is not null; 235/// Invokes <see cref="IHttpsConfigurationService.Initialize"/>, passing appropriate arguments. 237void Initialize(IHttpsConfigurationService httpsConfigurationService); 258public void Initialize(IHttpsConfigurationService httpsConfigurationService)
Internal\Infrastructure\TransportManager.cs (2)
18private readonly IHttpsConfigurationService _httpsConfigurationService; 24IHttpsConfigurationService httpsConfigurationService,
Internal\KestrelServerImpl.cs (3)
26private readonly IHttpsConfigurationService _httpsConfigurationService; 40IHttpsConfigurationService httpsConfigurationService, 52IHttpsConfigurationService httpsConfigurationService,
KestrelConfigurationLoader.cs (2)
21private readonly IHttpsConfigurationService _httpsConfigurationService; 37IHttpsConfigurationService httpsConfigurationService,
KestrelServerOptions.cs (5)
295Debug.Assert(ApplicationServices.GetRequiredService<IHttpsConfigurationService>().IsInitialized, "HTTPS configuration should have been enabled"); 322var httpsConfigurationService = ApplicationServices.GetRequiredService<IHttpsConfigurationService>(); 458var httpsConfigurationService = ApplicationServices.GetRequiredService<IHttpsConfigurationService>();