CertificateValidatedContext Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Context used when certificates are being validated.
public ref class CertificateValidatedContext : Microsoft::AspNetCore::Authentication::ResultContext<Microsoft::AspNetCore::Authentication::Certificate::CertificateAuthenticationOptions ^>
public class CertificateValidatedContext : Microsoft.AspNetCore.Authentication.ResultContext<Microsoft.AspNetCore.Authentication.Certificate.CertificateAuthenticationOptions>
type CertificateValidatedContext = class
inherit ResultContext<CertificateAuthenticationOptions>
Public Class CertificateValidatedContext
Inherits ResultContext(Of CertificateAuthenticationOptions)
- Inheritance
-
CertificateValidatedContext
Constructors
CertificateValidatedContext(HttpContext, AuthenticationScheme, CertificateAuthenticationOptions) |
Creates a new instance of CertificateValidatedContext. |
Properties
ClientCertificate |
The certificate to validate. |
HttpContext |
The context. (Inherited from BaseContext<TOptions>) |
Options |
Gets the authentication options associated with the scheme. (Inherited from BaseContext<TOptions>) |
Principal |
Gets or sets the ClaimsPrincipal containing the user claims. (Inherited from ResultContext<TOptions>) |
Properties |
Gets or sets the AuthenticationProperties. (Inherited from ResultContext<TOptions>) |
Request |
The request. (Inherited from BaseContext<TOptions>) |
Response |
The response. (Inherited from BaseContext<TOptions>) |
Result |
Gets the AuthenticateResult result. (Inherited from ResultContext<TOptions>) |
Scheme |
The authentication scheme. (Inherited from BaseContext<TOptions>) |
Methods
Fail(Exception) |
Indicates that there was a failure during authentication. (Inherited from ResultContext<TOptions>) |
Fail(String) |
Indicates that there was a failure during authentication. (Inherited from ResultContext<TOptions>) |
NoResult() |
Indicates that there was no information returned for this authentication scheme. (Inherited from ResultContext<TOptions>) |
Success() |
Calls success creating a ticket with the Principal and Properties. (Inherited from ResultContext<TOptions>) |