From 998702e56d2d1acc100f0ec727d2a60c141e5e55 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 16 Aug 2017 13:36:01 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/WebSocket.cs | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index 91845b3b..4be23b2e 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -3259,8 +3259,8 @@ namespace WebSocketSharp } /// - /// Sends the specified asynchronously using - /// the WebSocket connection. + /// Sends asynchronously using the WebSocket + /// connection. /// /// /// This method does not wait for the send to be complete. @@ -3269,9 +3269,17 @@ namespace WebSocketSharp /// An array of that represents the binary data 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.