2 implementations of FindByPasskeyIdAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (1)
670
public virtual async Task<TUser?>
FindByPasskeyIdAsync
(byte[] credentialId, CancellationToken cancellationToken)
UserStore.cs (1)
815
public virtual async Task<TUser?>
FindByPasskeyIdAsync
(byte[] credentialId, CancellationToken cancellationToken)
1 reference to FindByPasskeyIdAsync
Microsoft.Extensions.Identity.Core (1)
UserManager.cs (1)
2682
return passkeyStore.
FindByPasskeyIdAsync
(credentialId, CancellationToken);