From a636653d389a74ed07b4fa62d61ff43c8f535bbb Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 1 Dec 2015 16:02:20 +0900 Subject: [PATCH] [Modify] Polish it --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 89b8b55b..2307a071 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,9 @@ ws.OnMessage += (sender, e) => { `e` has passed as a `WebSocketSharp.MessageEventArgs`. -If you would like to get the message data, you should access `e.Data` or `e.RawData` property. And you can determine which property you should access by checking `e.IsText` or `e.IsBinary` property. +If you would like to get the message data, you should access `e.Data` or `e.RawData` property. + +And you can determine which property you should access by checking `e.IsText` or `e.IsBinary` property. If `e.IsText` is `true`, you should access `e.Data` that returns a `string` (represents a **text** message). @@ -648,7 +650,7 @@ And Example1 uses **[Json.NET]**. **[Example3]** starts an HTTP server that allows to accept the WebSocket connection requests. -Would you access to [http://localhost:4649](http://localhost:4649) to do **WebSocket Echo Test** with your web browser after Example3 running? +Would you access to [http://localhost:4649](http://localhost:4649) to do **WebSocket Echo Test** with your web browser while Example3 is running? ## Supported WebSocket Specifications ##