Modified Step 5 of 'WebSocket Client'

This commit is contained in:
sta 2014-01-23 17:01:12 +09:00
parent 6a18f412b3
commit a3a2f42007

View File

@ -201,7 +201,7 @@ If you want to send a data asynchronously, you should use the `WebSocket.SendAsy
ws.SendAsync (data, completed);
```
And if you want to do something when the send is complete, you should set any action to `completed` (its type is `Action<bool>`).
And if you want to do something when the send is complete, you should set `completed` to any `Action<bool>`.
#### Step 6 ####