5 writes to CustomTrustStore
Microsoft.AspNetCore.Authentication.Test (5)
CertificateTests.cs (5)
320CustomTrustStore = new X509Certificate2Collection() { Certificates.SignedSecondaryRoot }, 337CustomTrustStore = new X509Certificate2Collection() { Certificates.SelfSignedPrimaryRoot, Certificates.SignedSecondaryRoot }, 355CustomTrustStore = new X509Certificate2Collection() { Certificates.SelfSignedPrimaryRoot, }, 373CustomTrustStore = new X509Certificate2Collection() { Certificates.SelfSignedPrimaryRoot, }, 850options.CustomTrustStore = configureOptions.CustomTrustStore;
5 references to CustomTrustStore
Microsoft.AspNetCore.Authentication.Certificate (4)
CertificateAuthenticationHandler.cs (2)
219if (Options.CustomTrustStore != null) 221chainPolicy.CustomTrustStore.AddRange(Options.CustomTrustStore);
CertificateAuthenticationOptions.cs (2)
32/// Method used to validate certificate chains against <see cref="CustomTrustStore"/>. 37/// <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)
850options.CustomTrustStore = configureOptions.CustomTrustStore;