1 write to Path
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\ConfigurationReader.cs (1)
371Path = configSection[nameof(Path)];
11 references to Path
Microsoft.AspNetCore.Server.Kestrel.Core (11)
Internal\CertificatePathWatcher.cs (2)
115var path = Path.Combine(_contentRootDir, certificateConfig.Path); 218var path = Path.Combine(_contentRootDir, certificateConfig.Path);
Internal\Certificates\CertificateConfigLoader.cs (2)
39var certificatePath = Path.Combine(HostEnvironment.ContentRootPath, certInfo.Path!); 74return (new X509Certificate2(Path.Combine(HostEnvironment.ContentRootPath, certInfo.Path!), certInfo.Password), fullChain);
Internal\ConfigurationReader.cs (6)
371Path = configSection[nameof(Path)]; 393[MemberNotNullWhen(true, nameof(Path))] 394public bool IsFileCert => !string.IsNullOrEmpty(Path); 423Path == other.Path && 432public override int GetHashCode() => HashCode.Combine(Path, KeyPath, Password, FileHasChanged, Subject, Store, Location, AllowInvalid ?? false);
TlsConfigurationLoader.cs (1)
150certificateConfig.Path == null &&