IdentityServiceCollectionUIExtensions.AddDefaultIdentity 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
AddDefaultIdentity<TUser>(IServiceCollection) |
向应用程序添加一组常见的标识服务,包括默认 UI、令牌提供程序,并将身份验证配置为使用标识 Cookie。 |
AddDefaultIdentity<TUser>(IServiceCollection, Action<IdentityOptions>) |
向应用程序添加一组常见的标识服务,包括默认 UI、令牌提供程序,并将身份验证配置为使用标识 Cookie。 |
AddDefaultIdentity<TUser>(IServiceCollection)
向应用程序添加一组常见的标识服务,包括默认 UI、令牌提供程序,并将身份验证配置为使用标识 Cookie。
public static Microsoft.AspNetCore.Identity.IdentityBuilder AddDefaultIdentity<TUser> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services) where TUser : class;
static member AddDefaultIdentity : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.AspNetCore.Identity.IdentityBuilder (requires 'User : null)
<Extension()>
Public Function AddDefaultIdentity(Of TUser As Class) (services As IServiceCollection) As IdentityBuilder
类型参数
- TUser
参数
- services
- IServiceCollection
返回
注解
若要使用默认 UI,应用程序必须使用 Microsoft.AspNetCore.Mvc, Microsoft.AspNetCore.StaticFiles 并且必须包含 _LoginPartial
应用程序可以找到的部分视图。
适用于
AddDefaultIdentity<TUser>(IServiceCollection, Action<IdentityOptions>)
向应用程序添加一组常见的标识服务,包括默认 UI、令牌提供程序,并将身份验证配置为使用标识 Cookie。
public static Microsoft.AspNetCore.Identity.IdentityBuilder AddDefaultIdentity<TUser> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Microsoft.AspNetCore.Identity.IdentityOptions> configureOptions) where TUser : class;
static member AddDefaultIdentity : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Microsoft.AspNetCore.Identity.IdentityOptions> -> Microsoft.AspNetCore.Identity.IdentityBuilder (requires 'User : null)
<Extension()>
Public Function AddDefaultIdentity(Of TUser As Class) (services As IServiceCollection, configureOptions As Action(Of IdentityOptions)) As IdentityBuilder
类型参数
- TUser
参数
- services
- IServiceCollection
- configureOptions
- Action<IdentityOptions>
配置 IdentityOptions。
返回
注解
若要使用默认 UI,应用程序必须使用 Microsoft.AspNetCore.Mvc, Microsoft.AspNetCore.StaticFiles 并且必须包含 _LoginPartial
应用程序可以找到的部分视图。