15 interfaces inheriting from IUserStore
Microsoft.Extensions.Identity.Core (15)
2 implementations of IUserStore
Microsoft.AspNetCore.Identity.Test (2)
69 references to IUserStore
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 (22)
UserManagerTest.cs (17)
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>>();
1019var store = new Mock<IUserStore<PocoUser>>();
1266.AddSingleton<IUserStore<PocoUser>>(userLockoutStore.Object)
2122Task<IdentityResult> IUserStore<PocoUser>.CreateAsync(PocoUser user, CancellationToken cancellationToken)
2127Task<IdentityResult> IUserStore<PocoUser>.UpdateAsync(PocoUser user, CancellationToken cancellationToken)
2132Task<IdentityResult> IUserStore<PocoUser>.DeleteAsync(PocoUser user, CancellationToken cancellationToken)
2183.AddSingleton<IUserStore<PocoUser>>(store.Object)
Microsoft.AspNetCore.Identity.UI (12)
Microsoft.Extensions.Identity.Core (4)