From a2713c4df2a5343b6f5f32e6eca962b2547cee8f Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 25 Jan 2014 17:35:47 +0900 Subject: [PATCH] Fix a few --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 51b6e78d..14775565 100644 --- a/README.md +++ b/README.md @@ -64,9 +64,8 @@ namespace Example public static void Main (string [] args) { using (var ws = new WebSocket ("ws://dragonsnest.far/Laputa")) { - ws.OnMessage += (sender, e) => { + ws.OnMessage += (sender, e) => Console.WriteLine ("Laputa says: " + e.Data); - }; ws.Connect (); ws.Send ("BALUS"); @@ -312,9 +311,9 @@ public class Chat : WebSocketService } ``` -If you override the `WebSocketService.OnMessage (MessageEventArgs)` method, that overridden method is called when the current session's `WebSocket.OnMessage` event occurs. +If you override the `WebSocketService.OnMessage (MessageEventArgs)` method, that overridden method is called when the `OnMessage` event of the current session's `WebSocket` occurs. -And if you override the `WebSocketService.OnOpen ()`, `WebSocketService.OnError (ErrorEventArgs)`, and `WebSocketService.OnClose (CloseEventArgs)` methods, each of them is called when each event of the current session's `WebSocket` (`OnOpen`, `OnError`, and `OnClose`) occurs. +And if you override the `WebSocketService.OnOpen ()`, `WebSocketService.OnError (ErrorEventArgs)`, and `WebSocketService.OnClose (CloseEventArgs)` methods, each of them is called when each event of the current session's `WebSocket` (the `OnOpen`, `OnError`, and `OnClose` events) occurs. The `WebSocketService.Send` method sends a data to the client of the current session to the WebSocket service.