Udostępnij za pośrednictwem


IdentityServiceCollectionExtensions.AddIdentity Metoda

Definicja

Przeciążenia

AddIdentity<TUser,TRole>(IServiceCollection)

Dodaje domyślną konfigurację systemu tożsamości dla określonych typów użytkowników i ról.

AddIdentity<TUser,TRole>(IServiceCollection, Action<IdentityOptions>)
AddIdentity<TUser,TRole>(IServiceCollection, Action<IdentityOptions>)

Dodaje i konfiguruje system tożsamości dla określonych typów użytkowników i ról.

AddIdentity<TUser,TRole>(IServiceCollection)

Źródło:
IdentityServiceCollectionExtensions.cs
Źródło:
IdentityServiceCollectionExtensions.cs
Źródło:
IdentityServiceCollectionExtensions.cs

Dodaje domyślną konfigurację systemu tożsamości dla określonych typów użytkowników i ról.

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

Parametry typu

TUser

Typ reprezentujący użytkownika w systemie.

TRole

Typ reprezentujący rolę w systemie.

Parametry

services
IServiceCollection

Usługi dostępne w aplikacji.

Zwraca

Element IdentityBuilder do tworzenia i konfigurowania systemu tożsamości.

Dotyczy

AddIdentity<TUser,TRole>(IServiceCollection, Action<IdentityOptions>)

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

Parametry typu

TUser
TRole

Parametry

setupAction
Action<IdentityOptions>

Zwraca

Dotyczy

AddIdentity<TUser,TRole>(IServiceCollection, Action<IdentityOptions>)

Źródło:
IdentityServiceCollectionExtensions.cs
Źródło:
IdentityServiceCollectionExtensions.cs
Źródło:
IdentityServiceCollectionExtensions.cs

Dodaje i konfiguruje system tożsamości dla określonych typów użytkowników i ról.

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

Parametry typu

TUser

Typ reprezentujący użytkownika w systemie.

TRole

Typ reprezentujący rolę w systemie.

Parametry

services
IServiceCollection

Usługi dostępne w aplikacji.

setupAction
Action<IdentityOptions>

Akcja konfigurowania elementu IdentityOptions.

Zwraca

Element IdentityBuilder do tworzenia i konfigurowania systemu tożsamości.

Dotyczy