14 interfaces inheriting from IUserStore
Microsoft.Extensions.Identity.Core (14)
2 implementations of IUserStore
Microsoft.AspNetCore.Identity.Test (2)
66 references to IUserStore
Identity.DefaultUI.WebSite (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>>();
735var store = new Mock<IUserStore<PocoUser>>();
1713Task<IdentityResult> IUserStore<PocoUser>.CreateAsync(PocoUser user, CancellationToken cancellationToken)
1718Task<IdentityResult> IUserStore<PocoUser>.UpdateAsync(PocoUser user, CancellationToken cancellationToken)
1723Task<IdentityResult> IUserStore<PocoUser>.DeleteAsync(PocoUser user, CancellationToken cancellationToken)
1749.AddSingleton<IUserStore<PocoUser>>(store.Object)
Microsoft.AspNetCore.Identity.UI (12)
Microsoft.Extensions.Identity.Core (4)