Поделиться через


IdentityServiceCollectionExtensions.AddIdentityApiEndpoints Метод

Определение

Перегрузки

AddIdentityApiEndpoints<TUser>(IServiceCollection)

Добавляет в приложение набор общих служб идентификации для поддержки MapIdentityApi<TUser>(IEndpointRouteBuilder) и настраивает проверку подлинности для поддержки маркеров носителя удостоверений и файлов cookie.

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

Добавляет в приложение набор общих служб идентификации для поддержки MapIdentityApi<TUser>(IEndpointRouteBuilder) и настраивает проверку подлинности для поддержки маркеров носителя удостоверений и файлов cookie.

AddIdentityApiEndpoints<TUser>(IServiceCollection)

Исходный код:
IdentityServiceCollectionExtensions.cs

Добавляет в приложение набор общих служб идентификации для поддержки MapIdentityApi<TUser>(IEndpointRouteBuilder) и настраивает проверку подлинности для поддержки маркеров носителя удостоверений и файлов 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

Добавляет в приложение набор общих служб идентификации для поддержки MapIdentityApi<TUser>(IEndpointRouteBuilder) и настраивает проверку подлинности для поддержки маркеров носителя удостоверений и файлов 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.

Применяется к