IUserStore<TUser>.FindByNameAsync(String, CancellationToken) Metodo
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.
Trova e restituisce un utente, se presente, che ha il nome utente normalizzato specificato.
public:
System::Threading::Tasks::Task<TUser> ^ FindByNameAsync(System::String ^ normalizedUserName, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<TUser> FindByNameAsync (string normalizedUserName, System.Threading.CancellationToken cancellationToken);
public System.Threading.Tasks.Task<TUser?> FindByNameAsync (string normalizedUserName, System.Threading.CancellationToken cancellationToken);
abstract member FindByNameAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'User (requires 'User : null)>
Public Function FindByNameAsync (normalizedUserName As String, cancellationToken As CancellationToken) As Task(Of TUser)
Parametri
- normalizedUserName
- String
Nome utente normalizzato da cercare.
- cancellationToken
- CancellationToken
Oggetto CancellationToken usato per propagare le notifiche di richiesta di annullamento dell'operazione.
Restituisce
Oggetto Task che rappresenta l'operazione asincrona contenente l'utente corrispondente all'oggetto specificato normalizedUserName
se esiste.