React to HttpAbstractions
This commit is contained in:
parent
08c04f8912
commit
d125a14a39
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue