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