[Modify] Throw exception

This commit is contained in:
sta 2017-08-18 14:27:13 +09:00
parent 0254b00b9e
commit 9a2dc74cbc

View File

@ -962,8 +962,12 @@ namespace WebSocketSharp.Server
public void CloseSession (string id, CloseStatusCode code, string reason)
{
IWebSocketSession session;
if (TryGetSession (id, out session))
session.Context.WebSocket.Close (code, reason);
if (!TryGetSession (id, out session)) {
var msg = "The session could not be found.";
throw new ArgumentException (msg, "id");
}
session.Context.WebSocket.Close (code, reason);
}
/// <summary>