IUserPhoneNumberStore<TUser, TKey> Interface
Defines the members for the user phone number store.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
Syntax
public interface IUserPhoneNumberStore<TUser, in TKey> : IUserStore<TUser, TKey>,
IDisposable
where TUser : class, IUser<TKey>
generic<typename TUser, typename TKey>
where TUser : ref class, IUser<TKey>
public interface class IUserPhoneNumberStore : IUserStore<TUser, TKey>,
IDisposable
type IUserPhoneNumberStore<'TUser, 'TKey when 'TUser : not struct and IUser<'TKey>> =
interface
interface IUserStore<'TUser, 'TKey>
interface IDisposable
end
Public Interface IUserPhoneNumberStore(Of TUser As { Class, IUser(Of TKey) }, In TKey)
Inherits IUserStore(Of TUser, TKey), IDisposable
Type Parameters
- TUser
The type of the user in the store.
- **in **TKey
The type of the keys in the store.
Methods
Name | Description | |
---|---|---|
CreateAsync(TUser) | Asynchronously inserts a new user.(Inherited from IUserStore<TUser, TKey>.) |
|
DeleteAsync(TUser) | Asynchronously deletes a user.(Inherited from IUserStore<TUser, TKey>.) |
|
Dispose() | (Inherited from IDisposable.) |
|
FindByIdAsync(TKey) | Asynchronously finds a user using the specified identifier.(Inherited from IUserStore<TUser, TKey>.) |
|
FindByNameAsync(String) | Asynchronously finds a user by name.(Inherited from IUserStore<TUser, TKey>.) |
|
GetPhoneNumberAsync(TUser) | Asynchronously gets the user phone number. |
|
GetPhoneNumberConfirmedAsync(TUser) | Asynchronously gets whether the user phone number is confirmed. |
|
SetPhoneNumberAsync(TUser, String) | Asynchronously sets the phone number associated with the user. |
|
SetPhoneNumberConfirmedAsync(TUser, Boolean) | Asynchronously sets whether the user phone number is confirmed. |
|
UpdateAsync(TUser) | Asynchronously updates a user.(Inherited from IUserStore<TUser, TKey>.) |
See Also
Microsoft.AspNet.Identity Namespace
ASP.NET Identity
Return to top