IClaimsIdentityFactory<TUser> Interface

 

Defines the method a factory must implement to create a claims identity from a user.

Namespace:   Microsoft.AspNet.Identity
Assembly:  Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)

Syntax

public interface IClaimsIdentityFactory<TUser>
where TUser : class, IUser
generic<typename TUser>
where TUser : ref class, IUser
public interface class IClaimsIdentityFactory
type IClaimsIdentityFactory<'TUser when 'TUser : not struct and IUser> = interface end
Public Interface IClaimsIdentityFactory(Of TUser As { Class, IUser })

Type Parameters

  • TUser
    The type of the user.

Methods

Name Description
System_CAPS_pubmethod CreateAsync(UserManager<TUser>, TUser, String)

Creates a claims identity from a user using a user manager.

See Also

Microsoft.AspNet.Identity Namespace
ASP.NET Identity

Return to top