15 interfaces inheriting from IUserStore
Microsoft.Extensions.Identity.Core (15)
2 implementations of IUserStore
Microsoft.AspNetCore.Identity.Test (2)
68 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 (20)
UserManagerTest.cs (15)
20.AddTransient<IUserStore<PocoUser>, NoopUserStore>();
35.AddTransient<IUserStore<PocoUser>, NoopUserStore>()
52public CustomUserManager() : base(new Mock<IUserStore<PocoUser>>().Object, null, null, null, null, null, null, null, null)
67var store = new Mock<IUserStore<PocoUser>>();
127var store = new Mock<IUserStore<PocoUser>>();
145var store = new Mock<IUserStore<PocoUser>>();
187var store = new Mock<IUserStore<PocoUser>>();
207var store = new Mock<IUserStore<PocoUser>>();
225var store = new Mock<IUserStore<PocoUser>>();
242var store = new Mock<IUserStore<PocoUser>>();
810var store = new Mock<IUserStore<PocoUser>>();
1832Task<IdentityResult> IUserStore<PocoUser>.CreateAsync(PocoUser user, CancellationToken cancellationToken)
1837Task<IdentityResult> IUserStore<PocoUser>.UpdateAsync(PocoUser user, CancellationToken cancellationToken)
1842Task<IdentityResult> IUserStore<PocoUser>.DeleteAsync(PocoUser user, CancellationToken cancellationToken)
1893.AddSingleton<IUserStore<PocoUser>>(store.Object)
Microsoft.AspNetCore.Identity.UI (12)
Microsoft.Extensions.Identity.Core (4)