ICertificateValidationCache.Get(HttpContext, X509Certificate2) Method

Definition

Get the AuthenticateResult for the connection and certificate.

public:
 Microsoft::AspNetCore::Authentication::AuthenticateResult ^ Get(Microsoft::AspNetCore::Http::HttpContext ^ context, System::Security::Cryptography::X509Certificates::X509Certificate2 ^ certificate);
public Microsoft.AspNetCore.Authentication.AuthenticateResult Get (Microsoft.AspNetCore.Http.HttpContext context, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate);
public Microsoft.AspNetCore.Authentication.AuthenticateResult? Get (Microsoft.AspNetCore.Http.HttpContext context, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate);
abstract member Get : Microsoft.AspNetCore.Http.HttpContext * System.Security.Cryptography.X509Certificates.X509Certificate2 -> Microsoft.AspNetCore.Authentication.AuthenticateResult
Public Function Get (context As HttpContext, certificate As X509Certificate2) As AuthenticateResult

Parameters

context
HttpContext

The HttpContext.

certificate
X509Certificate2

The certificate.

Returns

the AuthenticateResult

Applies to