diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index defdb859..32e53a45 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -2833,19 +2833,29 @@ namespace WebSocketSharp } /// - /// Sends text asynchronously using the WebSocket connection. + /// Sends the specified asynchronously using + /// the WebSocket connection. /// /// - /// This method doesn't wait for the send to be complete. + /// This method does not wait for the send to be complete. /// /// /// A that represents the text data to send. /// /// - /// An Action<bool> delegate that references the method(s) called when - /// the send is complete. A passed to this delegate is true - /// if the send is complete successfully. + /// An Action<bool> delegate that invokes the method called when + /// the send is complete. A passed to this delegate will be + /// true if the send has done with no error. /// + /// + /// The current state of the connection is not Open. + /// + /// + /// is . + /// + /// + /// cannot be UTF8 encoded. + /// public void SendAsync (string data, Action completed) { if (_readyState != WebSocketState.Open) {