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