6 implementations of GetRoleIdAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (1)
RoleStore.cs (1)
194public virtual Task<string> GetRoleIdAsync(TRole role, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryStore.cs (1)
88public Task<string> GetRoleIdAsync(TRole role, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.Test (3)
IdentityBuilderTest.cs (1)
318public Task<string> GetRoleIdAsync(PocoRole role, CancellationToken cancellationToken = default(CancellationToken))
NoopRoleStore.cs (1)
47public Task<string> GetRoleIdAsync(PocoRole role, CancellationToken cancellationToken = default(CancellationToken))
RoleManagerTest.cs (1)
168public Task<string> GetRoleIdAsync(PocoRole role, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
RoleStoreBase.cs (1)
79public virtual Task<string> GetRoleIdAsync(TRole role, CancellationToken cancellationToken = default(CancellationToken))
1 reference to GetRoleIdAsync
Microsoft.Extensions.Identity.Core (1)
RoleManager.cs (1)
295return Store.GetRoleIdAsync(role, CancellationToken);