15 interfaces inheriting from IUserStore
Microsoft.Extensions.Identity.Core (15)
2 implementations of IUserStore
Microsoft.AspNetCore.Identity.Test (2)
69 references to IUserStore
Identity.DefaultUI.WebSite (1)
IdentitySample.PasskeyConformance (1)
IdentitySample.PasskeyUI (1)
Microsoft.AspNetCore.Identity (3)
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (16)
Microsoft.AspNetCore.Identity.InMemory.Test (8)
Microsoft.AspNetCore.Identity.Test (21)
UserManagerTest.cs (16)
23.AddTransient<IUserStore<PocoUser>, NoopUserStore>();
38.AddTransient<IUserStore<PocoUser>, NoopUserStore>()
55public CustomUserManager() : base(new Mock<IUserStore<PocoUser>>().Object, null, null, null, null, null, null, null, null)
70var store = new Mock<IUserStore<PocoUser>>();
133var store = new Mock<IUserStore<PocoUser>>();
160var store = new Mock<IUserStore<PocoUser>>();
186var store = new Mock<IUserStore<PocoUser>>();
228var store = new Mock<IUserStore<PocoUser>>();
248var store = new Mock<IUserStore<PocoUser>>();
266var store = new Mock<IUserStore<PocoUser>>();
283var store = new Mock<IUserStore<PocoUser>>();
1018var store = new Mock<IUserStore<PocoUser>>();
2088Task<IdentityResult> IUserStore<PocoUser>.CreateAsync(PocoUser user, CancellationToken cancellationToken)
2093Task<IdentityResult> IUserStore<PocoUser>.UpdateAsync(PocoUser user, CancellationToken cancellationToken)
2098Task<IdentityResult> IUserStore<PocoUser>.DeleteAsync(PocoUser user, CancellationToken cancellationToken)
2149.AddSingleton<IUserStore<PocoUser>>(store.Object)
Microsoft.AspNetCore.Identity.UI (12)
Microsoft.Extensions.Identity.Core (4)