4 references to SignInWithClaimsAsync
Microsoft.AspNetCore.Identity (3)
SignInManager.cs (3)
183
await
SignInWithClaimsAsync
(user, auth?.Properties, claims);
213
return
SignInWithClaimsAsync
(user, authenticationProperties, additionalClaims);
224
=>
SignInWithClaimsAsync
(user, new AuthenticationProperties { IsPersistent = isPersistent }, additionalClaims);
Microsoft.AspNetCore.Identity.Test (1)
SignInManagerTest.cs (1)
626
signInManager.Setup(s => s.
SignInWithClaimsAsync
(user, It.IsAny<AuthenticationProperties>(), It.IsAny<IEnumerable<Claim>>())).Returns(Task.FromResult(0)).Verifiable();