5 writes to CustomTrustStore
Microsoft.AspNetCore.Authentication.Test (5)
CertificateTests.cs (5)
326
CustomTrustStore
= new X509Certificate2Collection() { Certificates.SignedSecondaryRoot },
343
CustomTrustStore
= new X509Certificate2Collection() { Certificates.SelfSignedPrimaryRoot, Certificates.SignedSecondaryRoot },
361
CustomTrustStore
= new X509Certificate2Collection() { Certificates.SelfSignedPrimaryRoot, },
379
CustomTrustStore
= new X509Certificate2Collection() { Certificates.SelfSignedPrimaryRoot, },
856
options.
CustomTrustStore
= configureOptions.CustomTrustStore;
5 references to CustomTrustStore
Microsoft.AspNetCore.Authentication.Certificate (4)
CertificateAuthenticationHandler.cs (2)
219
if (Options.
CustomTrustStore
!= null)
221
chainPolicy.CustomTrustStore.AddRange(Options.
CustomTrustStore
);
CertificateAuthenticationOptions.cs (2)
40
/// Method used to validate certificate chains against <see cref="
CustomTrustStore
"/>.
45
/// <remarks>This property must be set to <see cref="X509ChainTrustMode.CustomRootTrust"/> to enable <see cref="
CustomTrustStore
"/> to be used in certificate chain validation.</remarks>
Microsoft.AspNetCore.Authentication.Test (1)
CertificateTests.cs (1)
856
options.CustomTrustStore = configureOptions.
CustomTrustStore
;