Share via


UserOnlyStore<TUser,TContext,TKey,TUserClaim,TUserLogin,TUserToken,TUserPasskey>.GetPasskeysAsync Method

Definition

Gets the passkey credentials for the specified user.

public virtual System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.AspNetCore.Identity.UserPasskeyInfo>> GetPasskeysAsync(TUser user, System.Threading.CancellationToken cancellationToken);
abstract member GetPasskeysAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.AspNetCore.Identity.UserPasskeyInfo>>
override this.GetPasskeysAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.AspNetCore.Identity.UserPasskeyInfo>>
Public Overridable Function GetPasskeysAsync (user As TUser, cancellationToken As CancellationToken) As Task(Of IList(Of UserPasskeyInfo))

Parameters

user
TUser

The user whose passkeys 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 a list of the user's passkeys.

Implements

Applies to