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
Public method CreateAsync Insert a new user
Public method DeleteAsync Delete a user
Public method Dispose (Inherited from IDisposable.)
Public method FindByIdAsync Finds a user
Public method FindByNameAsync Find a user by name
Public method UpdateAsync Update a user

Top

See Also

Reference

Microsoft.AspNet.Identity Namespace