IClaimsIdentityFactory<TUser, TKey> Interface

 

Defines the method a factory must implement to asynchronously create a claims identity from an IUser.

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

public interface IClaimsIdentityFactory<TUser, TKey>
where TUser : class, IUser<TKey>
where TKey : object, IEquatable<TKey>

Type Parameters

TUser

The type of the user.

TKey

The type of the key.

NameDescription
System_CAPS_pubmethodCreateAsync(UserManager<TUser, TKey>, TUser, String)

Asynchronously creates a claims identity from a user using a user manager.

Return to top
Show: