From 0968867f497c6d82d61f706816979a3a318d0432 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 16 Aug 2017 13:52:48 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/WebSocket.cs | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index 2bd47630..c8595a58 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -3301,19 +3301,31 @@ namespace WebSocketSharp } /// - /// Sends the specified file as the binary data asynchronously using - /// the WebSocket connection. + /// Sends the specified file asynchronously using the WebSocket connection. /// /// - /// This method does not wait for the send to be complete. + /// + /// The file is sent as the binary data. + /// + /// + /// This method does not wait for the send to be complete. + /// /// /// - /// A that specifies a file to send. + /// A that specifies the file to send. /// /// - /// 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. + /// + /// An Action<bool> delegate or + /// if not needed. + /// + /// + /// The delegate invokes the method called when the send is complete. + /// + /// + /// true is passed to the method if the send has done with + /// no error; otherwise, false. + /// /// /// /// The current state of the connection is not Open.