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