[Modify] Add it

This commit is contained in:
sta 2016-02-24 16:24:25 +09:00
parent f8955042f7
commit e8cafc37c2

View File

@ -810,6 +810,13 @@ namespace WebSocketSharp
return true;
}
private bool checkIfAvailable (
bool connecting, bool open, bool closing, bool closed, out string message
)
{
return checkIfAvailable (true, true, connecting, open, closing, closed, out message);
}
private bool checkIfAvailable (
bool client,
bool server,