3 implementations of IUserAuthenticationTokenStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore (1)
UserOnlyStore.cs (1)
107IUserAuthenticationTokenStore<TUser>,
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryUserStore.cs (1)
19IUserAuthenticationTokenStore<TUser>,
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
34IUserAuthenticationTokenStore<TUser>,
7 references to IUserAuthenticationTokenStore
Microsoft.Extensions.Identity.Core (7)
UserManager.cs (7)
199return Store is IUserAuthenticationTokenStore<TUser>; 2329var store = GetAuthenticationTokenStore(); 2351var store = GetAuthenticationTokenStore(); 2380var store = GetAuthenticationTokenStore(); 3005private IUserAuthenticationTokenStore<TUser> GetAuthenticationTokenStore() 3007var cast = Store as IUserAuthenticationTokenStore<TUser>;