Modified Step 5 of 'WebSocket Client'

This commit is contained in:
sta 2014-01-21 16:11:40 +09:00
parent afe47c0158
commit 79ecc119b6

View File

@ -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.