From d78e986bcf133915c37686510501c677f065ebbe Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Thu, 25 May 2017 18:19:52 -0700 Subject: [PATCH] React to HttpAbstractions changes --- .../SecurityStampValidatorTest.cs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/test/Microsoft.AspNetCore.Identity.Test/SecurityStampValidatorTest.cs b/test/Microsoft.AspNetCore.Identity.Test/SecurityStampValidatorTest.cs index 024d7dd8d2..8f56000d37 100644 --- a/test/Microsoft.AspNetCore.Identity.Test/SecurityStampValidatorTest.cs +++ b/test/Microsoft.AspNetCore.Identity.Test/SecurityStampValidatorTest.cs @@ -24,7 +24,12 @@ namespace Microsoft.AspNetCore.Identity.Test throw new NotImplementedException(); } - public Task ChallengeAsync(ChallengeContext context) + public Task ChallengeAsync(AuthenticationProperties properties) + { + throw new NotImplementedException(); + } + + public Task ForbidAsync(AuthenticationProperties properties) { throw new NotImplementedException(); } @@ -39,12 +44,12 @@ namespace Microsoft.AspNetCore.Identity.Test throw new NotImplementedException(); } - public Task SignInAsync(SignInContext context) + public Task SignInAsync(ClaimsPrincipal user, AuthenticationProperties properties) { throw new NotImplementedException(); } - public Task SignOutAsync(SignOutContext context) + public Task SignOutAsync(AuthenticationProperties properties) { throw new NotImplementedException(); }