IdentityServiceCollectionExtensions.AddIdentityApiEndpoints メソッド

定義

オーバーロード

AddIdentityApiEndpoints<TUser>(IServiceCollection)

アプリケーションに一連の共通 ID サービスを追加して、 MapIdentityApi<TUser>(IEndpointRouteBuilder) ID ベアラー トークンと Cookie をサポートするように認証をサポートおよび構成します。

AddIdentityApiEndpoints<TUser>(IServiceCollection, Action<IdentityOptions>)

アプリケーションに一連の共通 ID サービスを追加して、 MapIdentityApi<TUser>(IEndpointRouteBuilder) ID ベアラー トークンと Cookie をサポートするように認証をサポートおよび構成します。

AddIdentityApiEndpoints<TUser>(IServiceCollection)

ソース:
IdentityServiceCollectionExtensions.cs

アプリケーションに一連の共通 ID サービスを追加して、 MapIdentityApi<TUser>(IEndpointRouteBuilder) ID ベアラー トークンと Cookie をサポートするように認証をサポートおよび構成します。

public static Microsoft.AspNetCore.Identity.IdentityBuilder AddIdentityApiEndpoints<TUser> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services) where TUser : class, new();
static member AddIdentityApiEndpoints : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.AspNetCore.Identity.IdentityBuilder (requires 'User : null and 'User : (new : unit -> 'User))
<Extension()>
Public Function AddIdentityApiEndpoints(Of TUser As {Class, New}) (services As IServiceCollection) As IdentityBuilder

型パラメーター

TUser

パラメーター

戻り値

IdentityBuilder

適用対象

AddIdentityApiEndpoints<TUser>(IServiceCollection, Action<IdentityOptions>)

ソース:
IdentityServiceCollectionExtensions.cs

アプリケーションに一連の共通 ID サービスを追加して、 MapIdentityApi<TUser>(IEndpointRouteBuilder) ID ベアラー トークンと Cookie をサポートするように認証をサポートおよび構成します。

public static Microsoft.AspNetCore.Identity.IdentityBuilder AddIdentityApiEndpoints<TUser> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Microsoft.AspNetCore.Identity.IdentityOptions> configure) where TUser : class, new();
static member AddIdentityApiEndpoints : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Microsoft.AspNetCore.Identity.IdentityOptions> -> Microsoft.AspNetCore.Identity.IdentityBuilder (requires 'User : null and 'User : (new : unit -> 'User))
<Extension()>
Public Function AddIdentityApiEndpoints(Of TUser As {Class, New}) (services As IServiceCollection, configure As Action(Of IdentityOptions)) As IdentityBuilder

型パラメーター

TUser

パラメーター

configure
Action<IdentityOptions>

IdentityOptions を構成します。

戻り値

IdentityBuilder

適用対象