1 implementation of AddToRoleAsync
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
1047public abstract Task AddToRoleAsync(TUser user, string normalizedRoleName, CancellationToken cancellationToken = default(CancellationToken));
2 references to AddToRoleAsync
Microsoft.Extensions.Identity.Core (2)
UserManager.cs (2)
1334await userRoleStore.AddToRoleAsync(user, normalizedRole, CancellationToken).ConfigureAwait(false); 1377await userRoleStore.AddToRoleAsync(user, normalizedRole, CancellationToken).ConfigureAwait(false);