1 instantiation of CertificateValidationCacheOptions
Microsoft.AspNetCore.Authentication.Test (1)
CertificateTests.cs (1)
881services.AddSingleton<ICertificateValidationCache>(new CertificateValidationCache(Options.Create(new CertificateValidationCacheOptions()), timeProvider));
6 references to CertificateValidationCacheOptions
Microsoft.AspNetCore.Authentication.Certificate (6)
CertificateAuthenticationExtensions.cs (2)
84/// <param name="configureOptions">A delegate to configure <see cref="CertificateValidationCacheOptions"/>.</param> 88Action<CertificateValidationCacheOptions>? configureOptions = null)
CertificateValidationCache.cs (4)
18private readonly CertificateValidationCacheOptions _options; 21internal CertificateValidationCache(IOptions<CertificateValidationCacheOptions> options, TimeProvider timeProvider) 31/// <param name="options">An accessor to <see cref="CertificateValidationCacheOptions"/></param> 32public CertificateValidationCache(IOptions<CertificateValidationCacheOptions> options) : this(options, TimeProvider.System)