UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>.GetUserNameAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the user name for the specified user
.
public virtual System.Threading.Tasks.Task<string> GetUserNameAsync (TUser user, System.Threading.CancellationToken cancellationToken = default);
public virtual System.Threading.Tasks.Task<string?> GetUserNameAsync (TUser user, System.Threading.CancellationToken cancellationToken = default);
abstract member GetUserNameAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
override this.GetUserNameAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Overridable Function GetUserNameAsync (user As TUser, Optional cancellationToken As CancellationToken = Nothing) As Task(Of String)
Parameters
- user
- TUser
The user whose name should be retrieved.
- cancellationToken
- CancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.
Returns
The Task that represents the asynchronous operation, containing the name for the specified user
.