From 79ecc119b63bb40b8d145f15d2479a333d160d37 Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 21 Jan 2014 16:11:40 +0900 Subject: [PATCH] Modified Step 5 of 'WebSocket Client' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 904954f4..204edb3f 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)` method to send a data. +You can use the `WebSocket.Send (string)`, `WebSocket.Send (byte [])`, and `WebSocket.Send (System.IO.FileInfo)` methods to send a data. If you want to send a data asynchronously, you should use the `WebSocket.SendAsync` method.