IUserStore<TUser>.GetNormalizedUserNameAsync 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.
Ottiene il nome utente normalizzato per l'oggetto specificato user
.
public:
System::Threading::Tasks::Task<System::String ^> ^ GetNormalizedUserNameAsync(TUser user, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<string> GetNormalizedUserNameAsync (TUser user, System.Threading.CancellationToken cancellationToken);
public System.Threading.Tasks.Task<string?> GetNormalizedUserNameAsync (TUser user, System.Threading.CancellationToken cancellationToken);
abstract member GetNormalizedUserNameAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Function GetNormalizedUserNameAsync (user As TUser, cancellationToken As CancellationToken) As Task(Of String)
Parametri
- user
- TUser
Utente il cui nome normalizzato deve essere recuperato.
- cancellationToken
- CancellationToken
Oggetto CancellationToken usato per propagare le notifiche di richiesta di annullamento dell'operazione.
Restituisce
Oggetto Task che rappresenta l'operazione asincrona contenente il nome utente normalizzato per l'oggetto specificato user
.