CertificateAuthenticationAppBuilderExtensions.AddCertificate メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
AddCertificate(AuthenticationBuilder) |
証明書認証を追加します。 証明書認証では、クライアント証明書を検証し、証明書が に解決されるイベントを発生させる認証ハンドラーを ClaimsPrincipal使用します。 証明書認証の詳細については、こちらをご覧 https://tools.ietf.org/html/rfc5246#section-7.4.4 ください。 |
AddCertificate(AuthenticationBuilder, Action<CertificateAuthenticationOptions>) |
証明書認証を追加します。 証明書認証では、クライアント証明書を検証し、証明書が に解決されるイベントを発生させる認証ハンドラーを ClaimsPrincipal使用します。 証明書認証の詳細については、こちらをご覧 https://tools.ietf.org/html/rfc5246#section-7.4.4 ください。 |
AddCertificate(AuthenticationBuilder, String) |
証明書認証を追加します。 証明書認証では、クライアント証明書を検証し、証明書が に解決されるイベントを発生させる認証ハンドラーを ClaimsPrincipal使用します。 証明書認証の詳細については、こちらをご覧 https://tools.ietf.org/html/rfc5246#section-7.4.4 ください。 |
AddCertificate(AuthenticationBuilder, String, Action<CertificateAuthenticationOptions>) |
証明書認証を追加します。 証明書認証では、クライアント証明書を検証し、証明書が に解決されるイベントを発生させる認証ハンドラーを ClaimsPrincipal使用します。 証明書認証の詳細については、こちらをご覧 https://tools.ietf.org/html/rfc5246#section-7.4.4 ください。 |
AddCertificate(AuthenticationBuilder)
証明書認証を追加します。
証明書認証では、クライアント証明書を検証し、証明書が に解決されるイベントを発生させる認証ハンドラーを ClaimsPrincipal使用します。 証明書認証の詳細については、こちらをご覧 https://tools.ietf.org/html/rfc5246#section-7.4.4 ください。
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
パラメーター
戻り値
適用対象
AddCertificate(AuthenticationBuilder, Action<CertificateAuthenticationOptions>)
証明書認証を追加します。
証明書認証では、クライアント証明書を検証し、証明書が に解決されるイベントを発生させる認証ハンドラーを ClaimsPrincipal使用します。 証明書認証の詳細については、こちらをご覧 https://tools.ietf.org/html/rfc5246#section-7.4.4 ください。
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
パラメーター
- configureOptions
- Action<CertificateAuthenticationOptions>
を構成 CertificateAuthenticationOptionsするデリゲート。
戻り値
適用対象
AddCertificate(AuthenticationBuilder, String)
証明書認証を追加します。
証明書認証では、クライアント証明書を検証し、証明書が に解決されるイベントを発生させる認証ハンドラーを ClaimsPrincipal使用します。 証明書認証の詳細については、こちらをご覧 https://tools.ietf.org/html/rfc5246#section-7.4.4 ください。
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
パラメーター
- authenticationScheme
- String
認証スキームです。
戻り値
適用対象
AddCertificate(AuthenticationBuilder, String, Action<CertificateAuthenticationOptions>)
証明書認証を追加します。
証明書認証では、クライアント証明書を検証し、証明書が に解決されるイベントを発生させる認証ハンドラーを ClaimsPrincipal使用します。 証明書認証の詳細については、こちらをご覧 https://tools.ietf.org/html/rfc5246#section-7.4.4 ください。
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
パラメーター
- authenticationScheme
- String
認証スキームです。
- configureOptions
- Action<CertificateAuthenticationOptions>
を構成 CertificateAuthenticationOptionsするデリゲート。