2 implementations of UpdateAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (1)
RoleStore.cs (1)
146public virtual async Task<IdentityResult> UpdateAsync(TRole role, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
RoleStoreBase.cs (1)
63public abstract Task<IdentityResult> UpdateAsync(TRole role, CancellationToken cancellationToken = default(CancellationToken));
1 reference to UpdateAsync
Microsoft.Extensions.Identity.Core (1)
RoleManager.cs (1)
433return await Store.UpdateAsync(role, CancellationToken).ConfigureAwait(false);