IUserStore<TUser, TKey> Interface

 

Defines the methods for user management APIs.

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

public interface IUserStore<TUser, in TKey> : IDisposable
where TUser : class, IUser<TKey>

Type Parameters

TUser

The type of the user.

inTKey

The type of the keys.

NameDescription
System_CAPS_pubmethodCreateAsync(TUser)

Asynchronously inserts a new user.

System_CAPS_pubmethodDeleteAsync(TUser)

Asynchronously deletes a user.

System_CAPS_pubmethodDispose()

(Inherited from IDisposable.)

System_CAPS_pubmethodFindByIdAsync(TKey)

Asynchronously finds a user using the specified identifier.

System_CAPS_pubmethodFindByNameAsync(String)

Asynchronously finds a user by name.

System_CAPS_pubmethodUpdateAsync(TUser)

Asynchronously updates a user.

Return to top
Show: