IUserPhoneNumberStore<TUser> Interface

 

Defines the members for a user phone number store.

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

public interface IUserPhoneNumberStore<TUser> : IUserPhoneNumberStore<TUser, string>, 
	IUserStore<TUser, string>, IDisposable
where TUser : class, IUser<string>

Type Parameters

TUser

The type of user.

NameDescription
System_CAPS_pubmethodCreateAsync(TUser)

Asynchronously inserts a new user.(Inherited from IUserStore<TUser, TKey>.)

System_CAPS_pubmethodDeleteAsync(TUser)

Asynchronously deletes a user.(Inherited from IUserStore<TUser, TKey>.)

System_CAPS_pubmethodDispose()

(Inherited from IDisposable.)

System_CAPS_pubmethodFindByIdAsync(TKey)

Asynchronously finds a user using the specified identifier.(Inherited from IUserStore<TUser, TKey>.)

System_CAPS_pubmethodFindByNameAsync(String)

Asynchronously finds a user by name.(Inherited from IUserStore<TUser, TKey>.)

System_CAPS_pubmethodGetPhoneNumberAsync(TUser)

Asynchronously gets the user phone number.(Inherited from IUserPhoneNumberStore<TUser, TKey>.)

System_CAPS_pubmethodGetPhoneNumberConfirmedAsync(TUser)

Asynchronously gets whether the user phone number is confirmed.(Inherited from IUserPhoneNumberStore<TUser, TKey>.)

System_CAPS_pubmethodSetPhoneNumberAsync(TUser, String)

Asynchronously sets the phone number associated with the user.(Inherited from IUserPhoneNumberStore<TUser, TKey>.)

System_CAPS_pubmethodSetPhoneNumberConfirmedAsync(TUser, Boolean)

Asynchronously sets whether the user phone number is confirmed.(Inherited from IUserPhoneNumberStore<TUser, TKey>.)

System_CAPS_pubmethodUpdateAsync(TUser)

Asynchronously updates a user.(Inherited from IUserStore<TUser, TKey>.)

Return to top
Show: