From d13d4c8c797b5b35a754fa938c250b55368d5c1a Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 22 Nov 2016 16:54:13 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/WebSocket.cs | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index 127738c0..fbb4cec6 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -2792,20 +2792,29 @@ namespace WebSocketSharp } /// - /// Sends the specified as binary data asynchronously using - /// the WebSocket connection. + /// Sends the specified as the binary data + /// 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 file 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 opened to read. + /// public void SendAsync (FileInfo file, Action completed) { if (_readyState != WebSocketState.Open) {