Compartir a través de


CertificateAuthenticationAppBuilderExtensions.AddCertificate Método

Definición

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)

Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs

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

AuthenticationBuilder.

Se aplica a

AddCertificate(AuthenticationBuilder, Action<CertificateAuthenticationOptions>)

Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs

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

AuthenticationBuilder.

Se aplica a

AddCertificate(AuthenticationBuilder, String)

Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs

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

AuthenticationBuilder.

Se aplica a

AddCertificate(AuthenticationBuilder, String, Action<CertificateAuthenticationOptions>)

Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs
Source:
CertificateAuthenticationExtensions.cs

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.

Devoluciones

AuthenticationBuilder.

Se aplica a