IUserStore<TUser> Interface
Interface that exposes basic user management apis
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
Syntax
'Declaration
Public Interface IUserStore(Of TUser As IUser) _
Inherits IDisposable
'Usage
Dim instance As IUserStore(Of TUser)
public interface IUserStore<TUser> : IDisposable
where TUser : IUser
generic<typename TUser>
where TUser : IUser
public interface class IUserStore : IDisposable
type IUserStore<'TUser when 'TUser : IUser> =
interface
interface IDisposable
end
JScript does not support generic types and methods.
Type Parameters
- TUser
The IUserStore<TUser> type exposes the following members.
Methods
Name | Description | |
---|---|---|
CreateAsync | Insert a new user | |
DeleteAsync | Delete a user | |
Dispose | (Inherited from IDisposable.) | |
FindByIdAsync | Finds a user | |
FindByNameAsync | Find a user by name | |
UpdateAsync | Update a user |
Top