Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

IdentityServiceCollectionExtensions.AddIdentityCore Method

Definition

Namespace:
Microsoft.Extensions.DependencyInjection
Assemblies:
Microsoft.AspNetCore.Identity.dll, Microsoft.Extensions.Identity.Core.dll
Packages:
Microsoft.AspNetCore.App.Ref v10.0.0, Microsoft.Extensions.Identity.Core v10.0.0
Packages:
Microsoft.AspNetCore.App.Ref v11.0.0-preview.4.26230.115, Microsoft.Extensions.Identity.Core v11.0.0-preview.4.26230.115
Packages:
Microsoft.AspNetCore.Identity v2.1.0, Microsoft.Extensions.Identity.Core v2.1.0
Packages:
Microsoft.AspNetCore.Identity v2.2.0, Microsoft.Extensions.Identity.Core v2.2.0
Packages:
Microsoft.AspNetCore.App.Ref v3.0.1, Microsoft.Extensions.Identity.Core v3.0.3
Packages:
Microsoft.AspNetCore.App.Ref v3.1.10, Microsoft.Extensions.Identity.Core v3.1.18
Packages:
Microsoft.AspNetCore.App.Ref v5.0.0, Microsoft.Extensions.Identity.Core v5.0.9
Packages:
Microsoft.AspNetCore.App.Ref v6.0.36, Microsoft.Extensions.Identity.Core v6.0.6
Packages:
Microsoft.AspNetCore.App.Ref v7.0.5, Microsoft.Extensions.Identity.Core v7.0.5
Packages:
Microsoft.AspNetCore.App.Ref v8.0.19, Microsoft.Extensions.Identity.Core v8.0.19
Packages:
Microsoft.AspNetCore.App.Ref v9.0.8, Microsoft.Extensions.Identity.Core v9.0.8
Packages:
Microsoft.AspNetCore.Identity v2.0.0, Microsoft.Extensions.Identity.Core v2.0.0

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Overloads

Name Description
AddIdentityCore<TUser>(IServiceCollection)

Adds and configures the identity system for the specified User type. Role services are not added by default but can be added with AddRoles<TRole>().

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

Adds and configures the identity system for the specified User type. Role services are not added by default but can be added with 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
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs

Adds and configures the identity system for the specified User type. Role services are not added by default but can be added with 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

Type Parameters

TUser

The type representing a User in the system.

Parameters

services
IServiceCollection

The services available in the application.

Applies to

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
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs
Source:
IdentityServiceCollectionExtensions.cs

Adds and configures the identity system for the specified User type. Role services are not added by default but can be added with 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

Type Parameters

TUser

The type representing a User in the system.

Parameters

services
IServiceCollection

The services available in the application.

setupAction
Action<IdentityOptions>

An action to configure the IdentityOptions.

Applies to


Feedback

Was this page helpful?