React to HttpAbstractions

This commit is contained in:
Hao Kung 2017-06-27 15:11:02 -07:00
parent 08c04f8912
commit d125a14a39
1 changed files with 1 additions and 11 deletions

View File

@ -901,7 +901,7 @@ namespace Microsoft.AspNetCore.Sockets.Tests
}
else
{
return Task.FromResult(AuthenticateResult.None());
return Task.FromResult(AuthenticateResult.NoResult());
}
}
@ -923,16 +923,6 @@ namespace Microsoft.AspNetCore.Sockets.Tests
_scheme = scheme;
return Task.CompletedTask;
}
public Task SignInAsync(ClaimsPrincipal user, AuthenticationProperties properties)
{
throw new NotImplementedException();
}
public Task SignOutAsync(AuthenticationProperties properties)
{
throw new NotImplementedException();
}
}
private static async Task CheckTransportSupported(TransportType supportedTransports, TransportType transportType, int status)