2 implementations of Initialize
Microsoft.AspNetCore.Server.Kestrel.Core (2)
HttpsConfigurationService.cs (1)
57public void Initialize(
KestrelServer.cs (1)
82public void Initialize(IHostEnvironment hostEnvironment, ILogger<KestrelServer> serverLogger, ILogger<HttpsConnectionMiddleware> httpsLogger)
5 references to Initialize
Microsoft.AspNetCore.Server.Kestrel.Core (5)
HttpsConfigurationService.cs (2)
235/// Invokes <see cref="IHttpsConfigurationService.Initialize"/>, passing appropriate arguments. 260httpsConfigurationService.Initialize(_hostEnvironment, _serverLogger, _httpsLogger);
IHttpsConfigurationService.cs (2)
22/// If this property returns false, then methods other than <see cref="Initialize"/> will throw. 23/// The most obvious way to make this true is to call <see cref="Initialize"/>, but some implementations
KestrelServerOptions.cs (1)
329httpsConfigurationService.Initialize(hostEnvironment, logger, httpsLogger);