Base:
method
AddClaimsAsync
Microsoft.AspNetCore.Identity.UserStoreBase<TUser, TKey, TUserClaim, TUserLogin, TUserToken>.AddClaimsAsync(TUser, System.Collections.Generic.IEnumerable<System.Security.Claims.Claim>, System.Threading.CancellationToken)
3 references to AddClaimsAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (3)
UserStoreTest.cs (3)
68await Assert.ThrowsAsync<ObjectDisposedException>(async () => await store.AddClaimsAsync(null, null)); 107await Assert.ThrowsAsync<ArgumentNullException>("user", async () => await store.AddClaimsAsync(null, null)); 130async () => await store.AddClaimsAsync(new IdentityUser("fake"), null));