1 implementation of UpdateAsync
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);