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