1 implementation of ICertificateValidationCache
Microsoft.AspNetCore.Authentication.Certificate (1)
CertificateValidationCache.cs (1)
15public class CertificateValidationCache : ICertificateValidationCache
3 references to ICertificateValidationCache
Microsoft.AspNetCore.Authentication.Certificate (3)
CertificateAuthenticationExtensions.cs (1)
90builder.Services.AddSingleton<ICertificateValidationCache, CertificateValidationCache>();
CertificateAuthenticationHandler.cs (2)
19private ICertificateValidationCache? _cache; 46_cache = Context.RequestServices.GetService<ICertificateValidationCache>();