CertificateAuthenticationAppBuilderExtensions.AddCertificate Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
AddCertificate(AuthenticationBuilder) |
Aggiunge l'autenticazione del certificato. L'autenticazione del certificato usa un gestore di autenticazione che convalida il certificato client e genera un evento in cui il certificato viene risolto in un oggetto ClaimsPrincipal. Vedere https://tools.ietf.org/html/rfc5246#section-7.4.4 per altre informazioni sull'autenticazione del certificato. |
AddCertificate(AuthenticationBuilder, Action<CertificateAuthenticationOptions>) |
Aggiunge l'autenticazione del certificato. L'autenticazione del certificato usa un gestore di autenticazione che convalida il certificato client e genera un evento in cui il certificato viene risolto in un oggetto ClaimsPrincipal. Vedere https://tools.ietf.org/html/rfc5246#section-7.4.4 per altre informazioni sull'autenticazione del certificato. |
AddCertificate(AuthenticationBuilder, String) |
Aggiunge l'autenticazione del certificato. L'autenticazione del certificato usa un gestore di autenticazione che convalida il certificato client e genera un evento in cui il certificato viene risolto in un oggetto ClaimsPrincipal. Vedere https://tools.ietf.org/html/rfc5246#section-7.4.4 per altre informazioni sull'autenticazione del certificato. |
AddCertificate(AuthenticationBuilder, String, Action<CertificateAuthenticationOptions>) |
Aggiunge l'autenticazione del certificato. L'autenticazione del certificato usa un gestore di autenticazione che convalida il certificato client e genera un evento in cui il certificato viene risolto in un oggetto ClaimsPrincipal. Vedere https://tools.ietf.org/html/rfc5246#section-7.4.4 per altre informazioni sull'autenticazione del certificato. |
AddCertificate(AuthenticationBuilder)
Aggiunge l'autenticazione del certificato.
L'autenticazione del certificato usa un gestore di autenticazione che convalida il certificato client e genera un evento in cui il certificato viene risolto in un oggetto ClaimsPrincipal. Vedere https://tools.ietf.org/html/rfc5246#section-7.4.4 per altre informazioni sull'autenticazione del certificato.
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
Parametri
- builder
- AuthenticationBuilder
Oggetto AuthenticationBuilder.
Restituisce
Oggetto AuthenticationBuilder.
Si applica a
AddCertificate(AuthenticationBuilder, Action<CertificateAuthenticationOptions>)
Aggiunge l'autenticazione del certificato.
L'autenticazione del certificato usa un gestore di autenticazione che convalida il certificato client e genera un evento in cui il certificato viene risolto in un oggetto ClaimsPrincipal. Vedere https://tools.ietf.org/html/rfc5246#section-7.4.4 per altre informazioni sull'autenticazione del certificato.
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
Parametri
- builder
- AuthenticationBuilder
Oggetto AuthenticationBuilder.
- configureOptions
- Action<CertificateAuthenticationOptions>
Delegato per configurare CertificateAuthenticationOptions.
Restituisce
Oggetto AuthenticationBuilder.
Si applica a
AddCertificate(AuthenticationBuilder, String)
Aggiunge l'autenticazione del certificato.
L'autenticazione del certificato usa un gestore di autenticazione che convalida il certificato client e genera un evento in cui il certificato viene risolto in un oggetto ClaimsPrincipal. Vedere https://tools.ietf.org/html/rfc5246#section-7.4.4 per altre informazioni sull'autenticazione del certificato.
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
Parametri
- builder
- AuthenticationBuilder
Oggetto AuthenticationBuilder.
- authenticationScheme
- String
Schema di autenticazione.
Restituisce
Oggetto AuthenticationBuilder.
Si applica a
AddCertificate(AuthenticationBuilder, String, Action<CertificateAuthenticationOptions>)
Aggiunge l'autenticazione del certificato.
L'autenticazione del certificato usa un gestore di autenticazione che convalida il certificato client e genera un evento in cui il certificato viene risolto in un oggetto ClaimsPrincipal. Vedere https://tools.ietf.org/html/rfc5246#section-7.4.4 per altre informazioni sull'autenticazione del certificato.
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
Parametri
- builder
- AuthenticationBuilder
Oggetto AuthenticationBuilder.
- authenticationScheme
- String
Schema di autenticazione.
- configureOptions
- Action<CertificateAuthenticationOptions>
Delegato per configurare CertificateAuthenticationOptions.
Restituisce
Oggetto AuthenticationBuilder.