From 55cf887b337f8ec2a759372bccefe32d2bb9c883 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 16 Aug 2017 15:31:30 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/WebSocketSessionManager.cs | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/websocket-sharp/Server/WebSocketSessionManager.cs b/websocket-sharp/Server/WebSocketSessionManager.cs index 8a616a8e..a0fa6cce 100644 --- a/websocket-sharp/Server/WebSocketSessionManager.cs +++ b/websocket-sharp/Server/WebSocketSessionManager.cs @@ -657,15 +657,19 @@ namespace WebSocketSharp.Server } /// - /// Sends the specified of data from - /// the specified asynchronously to + /// Sends the data from asynchronously to /// every client in the WebSocket service. /// /// - /// 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 to read the binary data to send. + /// A instance from which to read the data to send. /// /// /// An that specifies the number of bytes to send. @@ -676,7 +680,7 @@ namespace WebSocketSharp.Server /// if not needed. /// /// - /// That delegate invokes the method called when the send is complete. + /// The delegate invokes the method called when the send is complete. /// /// ///