1 instantiation of CertificateValidationCacheOptions
Microsoft.AspNetCore.Authentication.Test (1)
CertificateTests.cs (1)
881
services.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>
88
Action<
CertificateValidationCacheOptions
>? configureOptions = null)
CertificateValidationCache.cs (4)
18
private readonly
CertificateValidationCacheOptions
_options;
21
internal CertificateValidationCache(IOptions<
CertificateValidationCacheOptions
> options, TimeProvider timeProvider)
31
/// <param name="options">An accessor to <see cref="
CertificateValidationCacheOptions
"/></param>
32
public CertificateValidationCache(IOptions<
CertificateValidationCacheOptions
> options) : this(options, TimeProvider.System)