IUserPhoneNumberStore<TUser>.GetPhoneNumberAsync Method

Definition

Gets the telephone number, if any, for the specified user.

public:
 System::Threading::Tasks::Task<System::String ^> ^ GetPhoneNumberAsync(TUser user, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<string> GetPhoneNumberAsync (TUser user, System.Threading.CancellationToken cancellationToken);
public System.Threading.Tasks.Task<string?> GetPhoneNumberAsync (TUser user, System.Threading.CancellationToken cancellationToken);
abstract member GetPhoneNumberAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Function GetPhoneNumberAsync (user As TUser, cancellationToken As CancellationToken) As Task(Of String)

Parameters

user
TUser

The user whose telephone number 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 user's telephone number, if any.

Applies to