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>
generic<typename TUser, typename TKey>
where TUser : ref class, IUser<TKey>
public interface class IUserStore : IDisposable
type IUserStore<'TUser, 'TKey when 'TUser : not struct and IUser<'TKey>> =
interface
interface IDisposable
end
Public Interface IUserStore(Of TUser As { Class, IUser(Of TKey) }, In TKey)
Inherits IDisposable
- TUser
The type of the user.
- in TKey
The type of the keys.
Name | Description | |
---|---|---|
![]() |
CreateAsync(TUser) | Asynchronously inserts a new user. |
![]() |
DeleteAsync(TUser) | Asynchronously deletes a user. |
![]() |
Dispose() | (Inherited from IDisposable.) |
![]() |
FindByIdAsync(TKey) | Asynchronously finds a user using the specified identifier. |
![]() |
FindByNameAsync(String) | Asynchronously finds a user by name. |
![]() |
UpdateAsync(TUser) | Asynchronously updates a user. |
Microsoft.AspNet.Identity Namespace
ASP.NET Identity
Return to top