Home
last modified time | relevance | path

Searched refs:ReplaceClaimAsync (Results 1 – 11 of 11) sorted by relevance

/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/src/Core/
H A DIUserClaimStore.cs44 …Task ReplaceClaimAsync(TUser user, Claim claim, Claim newClaim, CancellationToken cancellationToke… in ReplaceClaimAsync() method
H A DUserManager.cs1095 …public virtual async Task<IdentityResult> ReplaceClaimAsync(TUser user, Claim claim, Claim newClai… in ReplaceClaimAsync() method in Microsoft.AspNetCore.Identity.UserManager
1112 await claimStore.ReplaceClaimAsync(user, claim, newClaim, CancellationToken); in ReplaceClaimAsync()
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/test/Identity.Test/
H A DUserManagerTest.cs445 …store.Setup(s => s.ReplaceClaimAsync(user, It.IsAny<Claim>(), It.IsAny<Claim>(), CancellationToken… in UpdateClaimCallsStore()
452 var result = await userManager.ReplaceClaimAsync(user, claim, newClaim); in UpdateClaimCallsStore()
661 …Assert.ThrowsAsync<NotSupportedException>(async () => await manager.ReplaceClaimAsync(null, null, … in ClaimMethodsFailWhenStoreNotImplemented()
920 …rowsAsync<ArgumentNullException>("claim", async () => await manager.ReplaceClaimAsync(null, null, … in ManagerPublicNullChecks()
974 … async () => await manager.ReplaceClaimAsync(null, new Claim("a", "b"), new Claim("a", "c"))); in MethodsFailWithUnknownUserTest()
1064 …await Assert.ThrowsAsync<ObjectDisposedException>(() => manager.ReplaceClaimAsync(null, null, null… in MethodsThrowWhenDisposedTest()
1105 …public Task ReplaceClaimAsync(PocoUser user, Claim claim, Claim newClaim, CancellationToken cancel… in ReplaceClaimAsync() method in Microsoft.AspNetCore.Identity.Test.UserManagerTest.EmptyStore
1385 …public Task ReplaceClaimAsync(PocoUser user, Claim claim, Claim newClaim, CancellationToken cancel… in ReplaceClaimAsync() method in Microsoft.AspNetCore.Identity.Test.UserManagerTest.NotImplementedStore
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/test/EF.Test/
H A DUserStoreTest.cs101 …Assert.ThrowsAsync<ObjectDisposedException>(async () => await store.ReplaceClaimAsync(null, null, … in SqlUserStoreMethodsThrowWhenDisposedTest()
129 ….ThrowsAsync<ArgumentNullException>("user", async () => await store.ReplaceClaimAsync(null, null, … in UserStorePublicNullCheckTest()
H A DUserStoreWithGenericsTest.cs184 IdentityResultAssert.IsSuccess(await manager.ReplaceClaimAsync(user, oldClaim, claim)); in CanReplaceUserClaimWithIssuer()
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/test/EF.InMemory.Test/
H A DInMemoryStoreWithGenericsTest.cs159 IdentityResultAssert.IsSuccess(await manager.ReplaceClaimAsync(user, oldClaim, claim)); in CanReplaceUserClaimWithIssuer()
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/src/EF/
H A DUserOnlyStore.cs350 …public async override Task ReplaceClaimAsync(TUser user, Claim claim, Claim newClaim, Cancellation… in ReplaceClaimAsync() method in Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore
H A DUserStore.cs483 …public async override Task ReplaceClaimAsync(TUser user, Claim claim, Claim newClaim, Cancellation… in ReplaceClaimAsync() method in Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/test/InMemory.Test/
H A DInMemoryUserStore.cs53 …public Task ReplaceClaimAsync(TUser user, Claim claim, Claim newClaim, CancellationToken cancellat… in ReplaceClaimAsync() method in Microsoft.AspNetCore.Identity.InMemory.InMemoryUserStore
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/src/Stores/
H A DUserStoreBase.cs400 …public abstract Task ReplaceClaimAsync(TUser user, Claim claim, Claim newClaim, CancellationToken … in ReplaceClaimAsync() method in Microsoft.AspNetCore.Identity.UserStoreBase
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/src/Specification.Tests/
H A DUserManagerSpecificationTests.cs834 IdentityResultAssert.IsSuccess(await manager.ReplaceClaimAsync(user, oldClaim, claim)); in CanReplaceUserClaim()
866 IdentityResultAssert.IsSuccess(await manager.ReplaceClaimAsync(user, oldClaim, claim)); in ReplaceUserClaimOnlyAffectsUser()