From afe47c0158a461d672b4ee75ca58903e53fdca04 Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 21 Jan 2014 15:29:55 +0900 Subject: [PATCH] Modified Step 2 of 'WebSocket Server' --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 49746580..904954f4 100644 --- a/README.md +++ b/README.md @@ -316,11 +316,11 @@ If you override the `WebSocketService.OnMessage` method, it's bound to the serve And if you override the `WebSocketService.OnOpen`, `WebSocketService.OnError` and `WebSocketService.OnClose` methods, each of them is bound to each server side event of `WebSocket.OnOpen`, `WebSocket.OnError` and `WebSocket.OnClose`. -The `WebSocketService.Send (data)` method sends a data to the client of the current session to the WebSocket service. +The `WebSocketService.Send` method sends a data to the client of the current session to the WebSocket service. The `WebSocketService.Sessions` (its type is `WebSocketSharp.Server.WebSocketSessionManager`) property provides some functions for the sessions to the WebSocket service. -The `WebSocketService.Sessions.Broadcast (data)` method broadcasts a data to all clients of the WebSocket service. +The `WebSocketService.Sessions.Broadcast` method broadcasts a data to all clients of the WebSocket service. #### Step 3 ####