IdentityBuilder Constructors

Definition

Overloads

IdentityBuilder(Type, IServiceCollection)

Creates a new instance of IdentityBuilder.

IdentityBuilder(Type, Type, IServiceCollection)

Creates a new instance of IdentityBuilder.

IdentityBuilder(Type, IServiceCollection)

Source:
IdentityBuilder.cs
Source:
IdentityBuilder.cs
Source:
IdentityBuilder.cs
Source:
IdentityBuilder.cs
Source:
IdentityBuilder.cs
Source:
IdentityBuilder.cs
Source:
IdentityBuilder.cs
Source:
IdentityBuilder.cs

Creates a new instance of IdentityBuilder.

public:
 IdentityBuilder(Type ^ user, Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services);
public IdentityBuilder (Type user, Microsoft.Extensions.DependencyInjection.IServiceCollection services);
new Microsoft.AspNetCore.Identity.IdentityBuilder : Type * Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.AspNetCore.Identity.IdentityBuilder
Public Sub New (user As Type, services As IServiceCollection)

Parameters

user
Type

The Type to use for the users.

services
IServiceCollection

The IServiceCollection to attach to.

Applies to

IdentityBuilder(Type, Type, IServiceCollection)

Source:
IdentityBuilder.cs
Source:
IdentityBuilder.cs
Source:
IdentityBuilder.cs
Source:
IdentityBuilder.cs
Source:
IdentityBuilder.cs
Source:
IdentityBuilder.cs
Source:
IdentityBuilder.cs
Source:
IdentityBuilder.cs

Creates a new instance of IdentityBuilder.

public:
 IdentityBuilder(Type ^ user, Type ^ role, Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services);
public IdentityBuilder (Type user, Type role, Microsoft.Extensions.DependencyInjection.IServiceCollection services);
new Microsoft.AspNetCore.Identity.IdentityBuilder : Type * Type * Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.AspNetCore.Identity.IdentityBuilder
Public Sub New (user As Type, role As Type, services As IServiceCollection)

Parameters

user
Type

The Type to use for the users.

role
Type

The Type to use for the roles.

services
IServiceCollection

The IServiceCollection to attach to.

Applies to