React to HttpAbstractions changes

This commit is contained in:
Hao Kung 2017-05-25 18:19:52 -07:00
parent a5ddfc1f21
commit d78e986bcf
1 changed files with 8 additions and 3 deletions

View File

@ -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();
}