IUserPhoneNumberStore<TUser> Interfaccia
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Fornisce un'astrazione per un archivio contenente i numeri di telefono degli utenti.
generic <typename TUser>
where TUser : classpublic interface class IUserPhoneNumberStore : IDisposable, Microsoft::AspNetCore::Identity::IUserStore<TUser>
public interface IUserPhoneNumberStore<TUser> : IDisposable, Microsoft.AspNetCore.Identity.IUserStore<TUser> where TUser : class
type IUserPhoneNumberStore<'User (requires 'User : null)> = interface
interface IUserStore<'User (requires 'User : null)>
interface IDisposable
Public Interface IUserPhoneNumberStore(Of TUser)
Implements IDisposable, IUserStore(Of TUser)
Parametri di tipo
- TUser
Tipo che incapsula un utente.
- Derivato
- Implementazioni
Metodi
CreateAsync(TUser, CancellationToken) |
Crea l'oggetto specificato |
DeleteAsync(TUser, CancellationToken) |
Elimina l'oggetto specificato |
FindByIdAsync(String, CancellationToken) |
Trova e restituisce un utente, se presente, che ha l'oggetto specificato |
FindByNameAsync(String, CancellationToken) |
Trova e restituisce un utente, se presente, che ha il nome utente normalizzato specificato. (Ereditato da IUserStore<TUser>) |
GetNormalizedUserNameAsync(TUser, CancellationToken) |
Ottiene il nome utente normalizzato per l'oggetto specificato |
GetPhoneNumberAsync(TUser, CancellationToken) |
Ottiene il numero di telefono, se presente, per l'oggetto specificato |
GetPhoneNumberConfirmedAsync(TUser, CancellationToken) |
Ottiene un flag che indica se il numero di telefono specificato |
GetUserIdAsync(TUser, CancellationToken) |
Ottiene l'identificatore utente per l'oggetto specificato |
GetUserNameAsync(TUser, CancellationToken) |
Ottiene il nome utente per l'oggetto specificato |
SetNormalizedUserNameAsync(TUser, String, CancellationToken) |
Imposta il nome normalizzato specificato per l'oggetto specificato |
SetPhoneNumberAsync(TUser, String, CancellationToken) |
Imposta il numero di telefono per l'oggetto specificato |
SetPhoneNumberConfirmedAsync(TUser, Boolean, CancellationToken) |
Imposta un flag che indica se il numero di telefono specificato |
SetUserNameAsync(TUser, String, CancellationToken) |
Imposta l'oggetto specificato |
UpdateAsync(TUser, CancellationToken) |
Aggiornamenti specificato nell'archivio |