From facc205ad9fb12d3568b3a03c38dd82fce540e85 Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 17 Aug 2017 16:03:55 +0900 Subject: [PATCH] [Modify] Edit it --- .../Server/WebSocketServiceManager.cs | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/websocket-sharp/Server/WebSocketServiceManager.cs b/websocket-sharp/Server/WebSocketServiceManager.cs index db09af5d..42f1e3e1 100644 --- a/websocket-sharp/Server/WebSocketServiceManager.cs +++ b/websocket-sharp/Server/WebSocketServiceManager.cs @@ -664,28 +664,30 @@ namespace WebSocketSharp.Server } /// - /// Sends the specified of data from - /// the specified asynchronously to + /// Sends the data from asynchronously to /// every client in the WebSocket services. /// /// - /// 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 - /// read and send. + /// An that specifies the number of bytes to send. /// /// /// - /// An delegate or - /// if not needed. + /// An delegate or + /// 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. /// /// ///