CertificateAuthenticationAppBuilderExtensions.AddCertificate Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
AddCertificate(AuthenticationBuilder) |
Agrega autenticación de certificado. La autenticación de certificados usa un controlador de autenticación que valida el certificado de cliente y genera un evento en el que el certificado se resuelve en un ClaimsPrincipal. Consulte https://tools.ietf.org/html/rfc5246#section-7.4.4 para obtener más información sobre la autenticación de certificados. |
AddCertificate(AuthenticationBuilder, Action<CertificateAuthenticationOptions>) |
Agrega autenticación de certificado. La autenticación de certificados usa un controlador de autenticación que valida el certificado de cliente y genera un evento en el que el certificado se resuelve en un ClaimsPrincipal. Consulte https://tools.ietf.org/html/rfc5246#section-7.4.4 para obtener más información sobre la autenticación de certificados. |
AddCertificate(AuthenticationBuilder, String) |
Agrega autenticación de certificado. La autenticación de certificados usa un controlador de autenticación que valida el certificado de cliente y genera un evento en el que el certificado se resuelve en un ClaimsPrincipal. Consulte https://tools.ietf.org/html/rfc5246#section-7.4.4 para obtener más información sobre la autenticación de certificados. |
AddCertificate(AuthenticationBuilder, String, Action<CertificateAuthenticationOptions>) |
Agrega autenticación de certificado. La autenticación de certificados usa un controlador de autenticación que valida el certificado de cliente y genera un evento en el que el certificado se resuelve en un ClaimsPrincipal. Consulte https://tools.ietf.org/html/rfc5246#section-7.4.4 para obtener más información sobre la autenticación de certificados. |
AddCertificate(AuthenticationBuilder)
Agrega autenticación de certificado.
La autenticación de certificados usa un controlador de autenticación que valida el certificado de cliente y genera un evento en el que el certificado se resuelve en un ClaimsPrincipal. Consulte https://tools.ietf.org/html/rfc5246#section-7.4.4 para obtener más información sobre la autenticación de certificados.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddCertificate (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder);
static member AddCertificate : Microsoft.AspNetCore.Authentication.AuthenticationBuilder -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddCertificate (builder As AuthenticationBuilder) As AuthenticationBuilder
Parámetros
Devoluciones
Se aplica a
AddCertificate(AuthenticationBuilder, Action<CertificateAuthenticationOptions>)
Agrega autenticación de certificado.
La autenticación de certificados usa un controlador de autenticación que valida el certificado de cliente y genera un evento en el que el certificado se resuelve en un ClaimsPrincipal. Consulte https://tools.ietf.org/html/rfc5246#section-7.4.4 para obtener más información sobre la autenticación de certificados.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddCertificate (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, Action<Microsoft.AspNetCore.Authentication.Certificate.CertificateAuthenticationOptions> configureOptions);
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddCertificate (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, Action<Microsoft.AspNetCore.Authentication.Certificate.CertificateAuthenticationOptions>? configureOptions);
static member AddCertificate : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * Action<Microsoft.AspNetCore.Authentication.Certificate.CertificateAuthenticationOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddCertificate (builder As AuthenticationBuilder, configureOptions As Action(Of CertificateAuthenticationOptions)) As AuthenticationBuilder
Parámetros
- configureOptions
- Action<CertificateAuthenticationOptions>
Delegado para configurar CertificateAuthenticationOptions.
Devoluciones
Se aplica a
AddCertificate(AuthenticationBuilder, String)
Agrega autenticación de certificado.
La autenticación de certificados usa un controlador de autenticación que valida el certificado de cliente y genera un evento en el que el certificado se resuelve en un ClaimsPrincipal. Consulte https://tools.ietf.org/html/rfc5246#section-7.4.4 para obtener más información sobre la autenticación de certificados.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddCertificate (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme);
static member AddCertificate : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddCertificate (builder As AuthenticationBuilder, authenticationScheme As String) As AuthenticationBuilder
Parámetros
- authenticationScheme
- String
Esquema de autenticación.
Devoluciones
Se aplica a
AddCertificate(AuthenticationBuilder, String, Action<CertificateAuthenticationOptions>)
Agrega autenticación de certificado.
La autenticación de certificados usa un controlador de autenticación que valida el certificado de cliente y genera un evento en el que el certificado se resuelve en un ClaimsPrincipal. Consulte https://tools.ietf.org/html/rfc5246#section-7.4.4 para obtener más información sobre la autenticación de certificados.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddCertificate (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, Action<Microsoft.AspNetCore.Authentication.Certificate.CertificateAuthenticationOptions> configureOptions);
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddCertificate (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, Action<Microsoft.AspNetCore.Authentication.Certificate.CertificateAuthenticationOptions>? configureOptions);
static member AddCertificate : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * Action<Microsoft.AspNetCore.Authentication.Certificate.CertificateAuthenticationOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddCertificate (builder As AuthenticationBuilder, authenticationScheme As String, configureOptions As Action(Of CertificateAuthenticationOptions)) As AuthenticationBuilder
Parámetros
- authenticationScheme
- String
Esquema de autenticación.
- configureOptions
- Action<CertificateAuthenticationOptions>
Delegado para configurar CertificateAuthenticationOptions.