次の方法で共有


OAuthExtensions.AddOAuth メソッド

定義

オーバーロード

AddOAuth(AuthenticationBuilder, String, Action<OAuthOptions>)

指定した認証スキームを使用して OAuth 2.0 ベースの認証を に AuthenticationBuilder 追加します。

AddOAuth(AuthenticationBuilder, String, String, Action<OAuthOptions>)

指定した認証スキームを使用して OAuth 2.0 ベースの認証を に AuthenticationBuilder 追加します。

AddOAuth<TOptions,THandler>(AuthenticationBuilder, String, Action<TOptions>)

指定した認証スキームを使用して OAuth 2.0 ベースの認証を に AuthenticationBuilder 追加します。

AddOAuth<TOptions,THandler>(AuthenticationBuilder, String, String, Action<TOptions>)

指定した認証スキームを使用して OAuth 2.0 ベースの認証を に AuthenticationBuilder 追加します。

AddOAuth(AuthenticationBuilder, String, Action<OAuthOptions>)

ソース:
OAuthExtensions.cs
ソース:
OAuthExtensions.cs
ソース:
OAuthExtensions.cs

指定した認証スキームを使用して OAuth 2.0 ベースの認証を に AuthenticationBuilder 追加します。

public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOAuth (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, Action<Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions> configureOptions);
static member AddOAuth : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * Action<Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOAuth (builder As AuthenticationBuilder, authenticationScheme As String, configureOptions As Action(Of OAuthOptions)) As AuthenticationBuilder

パラメーター

authenticationScheme
String

認証スキームです。

configureOptions
Action<OAuthOptions>

を構成 OAuthOptionsするデリゲート。

戻り値

操作が完了した後の への builder 参照。

適用対象

AddOAuth(AuthenticationBuilder, String, String, Action<OAuthOptions>)

ソース:
OAuthExtensions.cs
ソース:
OAuthExtensions.cs
ソース:
OAuthExtensions.cs

指定した認証スキームを使用して OAuth 2.0 ベースの認証を に AuthenticationBuilder 追加します。

public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOAuth (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, string displayName, Action<Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions> configureOptions);
static member AddOAuth : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * string * Action<Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOAuth (builder As AuthenticationBuilder, authenticationScheme As String, displayName As String, configureOptions As Action(Of OAuthOptions)) As AuthenticationBuilder

パラメーター

authenticationScheme
String

認証スキームです。

displayName
String

認証ハンドラーの表示名。

configureOptions
Action<OAuthOptions>

を構成 OAuthOptionsするデリゲート。

戻り値

操作が完了した後の への builder 参照。

適用対象

AddOAuth<TOptions,THandler>(AuthenticationBuilder, String, Action<TOptions>)

ソース:
OAuthExtensions.cs
ソース:
OAuthExtensions.cs
ソース:
OAuthExtensions.cs

指定した認証スキームを使用して OAuth 2.0 ベースの認証を に AuthenticationBuilder 追加します。

public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOAuth<TOptions,THandler> (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, Action<TOptions> configureOptions) where TOptions : Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions, new() where THandler : Microsoft.AspNetCore.Authentication.OAuth.OAuthHandler<TOptions>;
static member AddOAuth : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * Action<'Options (requires 'Options :> Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions and 'Options : (new : unit -> 'Options))> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder (requires 'Options :> Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions and 'Options : (new : unit -> 'Options) and 'Handler :> Microsoft.AspNetCore.Authentication.OAuth.OAuthHandler<'Options>)
<Extension()>
Public Function AddOAuth(Of TOptions As {OAuthOptionsNew}, THandler As {OAuthOptionsNew}) (builder As AuthenticationBuilder, authenticationScheme As String, configureOptions As Action(Of TOptions)) As AuthenticationBuilder

型パラメーター

TOptions
THandler

パラメーター

authenticationScheme
String

認証スキームです。

configureOptions
Action<TOptions>

ハンドラー固有のオプションを構成するデリゲート。

戻り値

操作が完了した後の への builder 参照。

適用対象

AddOAuth<TOptions,THandler>(AuthenticationBuilder, String, String, Action<TOptions>)

ソース:
OAuthExtensions.cs
ソース:
OAuthExtensions.cs
ソース:
OAuthExtensions.cs

指定した認証スキームを使用して OAuth 2.0 ベースの認証を に AuthenticationBuilder 追加します。

public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOAuth<TOptions,THandler> (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, string displayName, Action<TOptions> configureOptions) where TOptions : Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions, new() where THandler : Microsoft.AspNetCore.Authentication.OAuth.OAuthHandler<TOptions>;
static member AddOAuth : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * string * Action<'Options (requires 'Options :> Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions and 'Options : (new : unit -> 'Options))> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder (requires 'Options :> Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions and 'Options : (new : unit -> 'Options) and 'Handler :> Microsoft.AspNetCore.Authentication.OAuth.OAuthHandler<'Options>)
<Extension()>
Public Function AddOAuth(Of TOptions As {OAuthOptionsNew}, THandler As {OAuthOptionsNew}) (builder As AuthenticationBuilder, authenticationScheme As String, displayName As String, configureOptions As Action(Of TOptions)) As AuthenticationBuilder

型パラメーター

TOptions
THandler

パラメーター

authenticationScheme
String

認証スキームです。

displayName
String

認証ハンドラーの表示名。

configureOptions
Action<TOptions>

ハンドラー固有のオプションを構成するデリゲート。

戻り値

操作が完了した後の への builder 参照。

適用対象