6 implementations of DeleteAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (1)
RoleStore.cs (1)
171public virtual async Task<IdentityResult> DeleteAsync(TRole role, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryStore.cs (1)
78public Task<IdentityResult> DeleteAsync(TRole role, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.Test (3)
IdentityBuilderTest.cs (1)
283public Task<IdentityResult> DeleteAsync(PocoRole role, CancellationToken cancellationToken = default(CancellationToken))
NoopRoleStore.cs (1)
42public Task<IdentityResult> DeleteAsync(PocoRole user, CancellationToken cancellationToken = default(CancellationToken))
RoleManagerTest.cs (1)
163public Task<IdentityResult> DeleteAsync(PocoRole role, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
RoleStoreBase.cs (1)
71public abstract Task<IdentityResult> DeleteAsync(TRole role, CancellationToken cancellationToken = default(CancellationToken));
1 reference to DeleteAsync
Microsoft.Extensions.Identity.Core (1)
RoleManager.cs (1)
209return Store.DeleteAsync(role, CancellationToken);