[Modify] Replace it

This commit is contained in:
sta 2016-08-30 14:35:18 +09:00
parent 13e1914523
commit e09a8c2f45

View File

@ -2531,10 +2531,15 @@ namespace WebSocketSharp
/// </param> /// </param>
public void CloseAsync (ushort code, string reason) public void CloseAsync (ushort code, string reason)
{ {
var msg = _readyState.CheckIfAvailable (true, true, false, false) ?? string msg;
CheckCloseParameters (code, reason, _client); if (!checkIfAvailable (true, true, false, false, out msg)) {
_logger.Error (msg);
error ("An error has occurred in closing the connection.", null);
if (msg != null) { return;
}
if (!CheckParametersForClose (code, reason, _client, out msg)) {
_logger.Error (msg); _logger.Error (msg);
error ("An error has occurred in closing the connection.", null); error ("An error has occurred in closing the connection.", null);