IUserStore<TUser>.GetUserIdAsync(TUser, CancellationToken) Method
Definition
Gets the user identifier for the specified user
.
public:
System::Threading::Tasks::Task<System::String ^> ^ GetUserIdAsync(TUser user, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<string> GetUserIdAsync (TUser user, System.Threading.CancellationToken cancellationToken);
abstract member GetUserIdAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Function GetUserIdAsync (user As TUser, cancellationToken As CancellationToken) As Task(Of String)
Parameters
- user
- TUser
The user whose identifier 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 identifier for the specified user
.