IdentityServiceCollectionExtensions.AddIdentityCore 메서드

정의

오버로드

AddIdentityCore<TUser>(IServiceCollection)

지정된 사용자 유형에 대한 ID 시스템을 추가하고 구성합니다. 역할 서비스는 기본적으로 추가되지 않지만 를 사용하여 AddRoles<TRole>()추가할 수 있습니다.

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

지정된 사용자 유형에 대한 ID 시스템을 추가하고 구성합니다. 역할 서비스는 기본적으로 추가되지 않지만 를 사용하여 AddRoles<TRole>()추가할 수 있습니다.

AddIdentityCore<TUser>(IServiceCollection)

Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs

지정된 사용자 유형에 대한 ID 시스템을 추가하고 구성합니다. 역할 서비스는 기본적으로 추가되지 않지만 를 사용하여 AddRoles<TRole>()추가할 수 있습니다.

public static Microsoft.AspNetCore.Identity.IdentityBuilder AddIdentityCore<TUser> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services) where TUser : class;
static member AddIdentityCore : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.AspNetCore.Identity.IdentityBuilder (requires 'User : null)
<Extension()>
Public Function AddIdentityCore(Of TUser As Class) (services As IServiceCollection) As IdentityBuilder

형식 매개 변수

TUser

시스템의 사용자를 나타내는 형식입니다.

매개 변수

services
IServiceCollection

애플리케이션에서 사용할 수 있는 서비스입니다.

적용 대상

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

Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs

지정된 사용자 유형에 대한 ID 시스템을 추가하고 구성합니다. 역할 서비스는 기본적으로 추가되지 않지만 를 사용하여 AddRoles<TRole>()추가할 수 있습니다.

public static Microsoft.AspNetCore.Identity.IdentityBuilder AddIdentityCore<TUser> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Microsoft.AspNetCore.Identity.IdentityOptions> setupAction) where TUser : class;
static member AddIdentityCore : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Microsoft.AspNetCore.Identity.IdentityOptions> -> Microsoft.AspNetCore.Identity.IdentityBuilder (requires 'User : null)
<Extension()>
Public Function AddIdentityCore(Of TUser As Class) (services As IServiceCollection, setupAction As Action(Of IdentityOptions)) As IdentityBuilder

형식 매개 변수

TUser

시스템의 사용자를 나타내는 형식입니다.

매개 변수

services
IServiceCollection

애플리케이션에서 사용할 수 있는 서비스입니다.

setupAction
Action<IdentityOptions>

를 구성하는 작업입니다 IdentityOptions.

적용 대상