OpenIdConnectExtensions.AddOpenIdConnect メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
AddOpenIdConnect(AuthenticationBuilder) |
既定のスキームを使用して、OpenId Connect 認証を に AuthenticationBuilder 追加します。 既定のスキームは、 で AuthenticationScheme指定されます。 OpenID Connect は、OAuth 2.0 プロトコルの上にある ID レイヤーです。 これにより、クライアントは、認証されたセッションとエンド ユーザーに関する情報を要求および受信できます。 |
AddOpenIdConnect(AuthenticationBuilder, Action<OpenIdConnectOptions>) |
既定のスキームを使用して、OpenId Connect 認証を に AuthenticationBuilder 追加します。 既定のスキームは、 で AuthenticationScheme指定されます。 OpenID Connect は、OAuth 2.0 プロトコルの上にある ID レイヤーです。 これにより、クライアントは、認証されたセッションとエンド ユーザーに関する情報を要求および受信できます。 |
AddOpenIdConnect(AuthenticationBuilder, String, Action<OpenIdConnectOptions>) |
指定したスキームを使用して、OpenId Connect 認証を に AuthenticationBuilder 追加します。 OpenID Connect は、OAuth 2.0 プロトコルの上にある ID レイヤーです。 これにより、クライアントは、認証されたセッションとエンド ユーザーに関する情報を要求および受信できます。 |
AddOpenIdConnect(AuthenticationBuilder, String, String, Action<OpenIdConnectOptions>) |
指定したスキームを使用して、OpenId Connect 認証を に AuthenticationBuilder 追加します。 OpenID Connect は、OAuth 2.0 プロトコルの上にある ID レイヤーです。 これにより、クライアントは、認証されたセッションとエンド ユーザーに関する情報を要求および受信できます。 |
AddOpenIdConnect(AuthenticationBuilder)
既定のスキームを使用して、OpenId Connect 認証を に AuthenticationBuilder 追加します。 既定のスキームは、 で AuthenticationScheme指定されます。
OpenID Connect は、OAuth 2.0 プロトコルの上にある ID レイヤーです。 これにより、クライアントは、認証されたセッションとエンド ユーザーに関する情報を要求および受信できます。
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder);
static member AddOpenIdConnect : Microsoft.AspNetCore.Authentication.AuthenticationBuilder -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOpenIdConnect (builder As AuthenticationBuilder) As AuthenticationBuilder
パラメーター
戻り値
操作が完了した後の への builder
参照。
適用対象
AddOpenIdConnect(AuthenticationBuilder, Action<OpenIdConnectOptions>)
既定のスキームを使用して、OpenId Connect 認証を に AuthenticationBuilder 追加します。 既定のスキームは、 で AuthenticationScheme指定されます。
OpenID Connect は、OAuth 2.0 プロトコルの上にある ID レイヤーです。 これにより、クライアントは、認証されたセッションとエンド ユーザーに関する情報を要求および受信できます。
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> configureOptions);
static member AddOpenIdConnect : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOpenIdConnect (builder As AuthenticationBuilder, configureOptions As Action(Of OpenIdConnectOptions)) As AuthenticationBuilder
パラメーター
- configureOptions
- Action<OpenIdConnectOptions>
を構成 OpenIdConnectOptionsするデリゲート。
戻り値
操作が完了した後の への builder
参照。
適用対象
AddOpenIdConnect(AuthenticationBuilder, String, Action<OpenIdConnectOptions>)
指定したスキームを使用して、OpenId Connect 認証を に AuthenticationBuilder 追加します。
OpenID Connect は、OAuth 2.0 プロトコルの上にある ID レイヤーです。 これにより、クライアントは、認証されたセッションとエンド ユーザーに関する情報を要求および受信できます。
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> configureOptions);
static member AddOpenIdConnect : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOpenIdConnect (builder As AuthenticationBuilder, authenticationScheme As String, configureOptions As Action(Of OpenIdConnectOptions)) As AuthenticationBuilder
パラメーター
- authenticationScheme
- String
認証スキームです。
- configureOptions
- Action<OpenIdConnectOptions>
を構成 OpenIdConnectOptionsするデリゲート。
戻り値
操作が完了した後の への builder
参照。
適用対象
AddOpenIdConnect(AuthenticationBuilder, String, String, Action<OpenIdConnectOptions>)
指定したスキームを使用して、OpenId Connect 認証を に AuthenticationBuilder 追加します。
OpenID Connect は、OAuth 2.0 プロトコルの上にある ID レイヤーです。 これにより、クライアントは、認証されたセッションとエンド ユーザーに関する情報を要求および受信できます。
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, string displayName, Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> configureOptions);
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, string? displayName, Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> configureOptions);
static member AddOpenIdConnect : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * string * Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOpenIdConnect (builder As AuthenticationBuilder, authenticationScheme As String, displayName As String, configureOptions As Action(Of OpenIdConnectOptions)) As AuthenticationBuilder
パラメーター
- authenticationScheme
- String
認証スキームです。
- displayName
- String
認証ハンドラーの表示名。
- configureOptions
- Action<OpenIdConnectOptions>
を構成 OpenIdConnectOptionsするデリゲート。
戻り値
操作が完了した後の への builder
参照。