Merged enix's fix (THX enix) and made a little change (because close method dose not work).

This commit is contained in:
sta
2011-06-05 17:39:43 +09:00
parent ab1f09283b
commit fc6ee2db12
25 changed files with 13 additions and 10 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -14,11 +14,11 @@ namespace Example
//using (WebSocket ws = new WebSocket("ws://localhost:8000/"))
using (WebSocket ws = new WebSocket("ws://localhost:8000/", "chat"))
{
/*ws.OnOpen += (o, e) =>
ws.OnOpen += (o, e) =>
{
//Do something.
ws.Send("Hi, all!");
};
*/
ws.OnMessage += (o, s) =>
{
#if NOTIFY

Binary file not shown.