From e3e8bdf3e59851239b5baf40fe3fb3842127d493 Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 21 Jan 2014 15:06:25 +0900 Subject: [PATCH] Fix a few --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 86b1e4d5..4576e480 100644 --- a/README.md +++ b/README.md @@ -193,7 +193,7 @@ ws.Send (data); The `WebSocket.Send` method is overloaded. -You can use the `WebSocket.Send (string)`, `WebSocket.Send (byte [])`, or `WebSocket.Send (System.IO.FileInfo)` to send a data. +You can use the `WebSocket.Send (string)`, `WebSocket.Send (byte [])`, or `WebSocket.Send (System.IO.FileInfo)` method to send a data. If you want to send a data asynchronously, you should use the `WebSocket.SendAsync (data, completed)` method. @@ -211,7 +211,7 @@ If you want to close the connection explicitly, you should use the `WebSocket.Cl The `WebSocket.Close` method is overloaded. -You can use the `WebSocket.Close ()`, `WebSocket.Close (ushort)`, `WebSocket.Close (WebSocketSharp.CloseStatusCode)`, `WebSocket.Close (ushort, string)`, or `WebSocket.Close (WebSocketSharp.CloseStatusCode, string)` to close the connection. +You can use the `WebSocket.Close ()`, `WebSocket.Close (ushort)`, `WebSocket.Close (WebSocketSharp.CloseStatusCode)`, `WebSocket.Close (ushort, string)`, or `WebSocket.Close (WebSocketSharp.CloseStatusCode, string)` method to close the connection. If you want to close the connection asynchronously, you should use the `WebSocket.CloseAsync` method.