React to auth

This commit is contained in:
Hao Kung 2017-06-29 16:29:00 -07:00
parent e25eb9135e
commit 824051cb28
1 changed files with 1 additions and 11 deletions

View File

@ -29,7 +29,7 @@ namespace Microsoft.AspNetCore.Server.IISIntegration
}
else
{
return Task.FromResult(AuthenticateResult.None());
return Task.FromResult(AuthenticateResult.NoResult());
}
}
@ -77,15 +77,5 @@ namespace Microsoft.AspNetCore.Server.IISIntegration
_context = context;
return Task.CompletedTask;
}
public Task SignInAsync(ClaimsPrincipal user, AuthenticationProperties properties)
{
throw new NotSupportedException();
}
public Task SignOutAsync(AuthenticationProperties properties)
{
return Task.CompletedTask;
}
}
}