From 8e5d517458c1b7f7025c537d79278e4d046378c7 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 16 Aug 2017 15:07:37 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/WebSocket.cs | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index d524f632..7dd909f7 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -3420,23 +3420,35 @@ namespace WebSocketSharp } /// - /// Sends the specified of data from - /// the specified asynchronously using + /// Sends the data from asynchronously using /// the WebSocket connection. /// /// - /// This method does not wait for the send to be complete. + /// + /// The data is sent as the binary data. + /// + /// + /// This method does not wait for the send to be complete. + /// /// /// - /// A from which reads the binary data to send. + /// A instance from which to read the data to send. /// /// - /// An that specifies the number of bytes to read and send. + /// An that specifies the number of bytes 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.