IUserStore<TUser>.FindByNameAsync(String, CancellationToken) Metodo

Definizione

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

Task<TUser>

Oggetto Task che rappresenta l'operazione asincrona contenente l'utente corrispondente all'oggetto specificato normalizedUserName se esiste.

Si applica a