1 write to Subject
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\ConfigurationReader.cs (1)
374Subject = configSection[nameof(Subject)];
9 references to Subject
Microsoft.AspNetCore.Server.Kestrel.Core (7)
Internal\Certificates\CertificateConfigLoader.cs (1)
179var subject = certInfo.Subject!;
Internal\ConfigurationReader.cs (6)
374Subject = configSection[nameof(Subject)]; 410[MemberNotNullWhen(true, nameof(Subject))] 411public bool IsStoreCert => !string.IsNullOrEmpty(Subject); 427Subject == other.Subject && 432public override int GetHashCode() => HashCode.Combine(Path, KeyPath, Password, FileHasChanged, Subject, Store, Location, AllowInvalid ?? false);
Microsoft.AspNetCore.Server.Kestrel.Tests (2)
ConfigurationReaderTests.cs (2)
68Assert.Equal("certsubject", storeCert.Subject); 215Assert.Equal("certsubject", cert4.Subject);