From 66ce1f401b588c5c09b026ed2d669d05dafa8394 Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 3 Apr 2017 17:03:38 +0900 Subject: [PATCH] [Modify] Edit it --- .../Server/WebSocketServiceManager.cs | 25 ++++++++++++++----- 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/websocket-sharp/Server/WebSocketServiceManager.cs b/websocket-sharp/Server/WebSocketServiceManager.cs index b8b1ba5c..7ccd55bb 100644 --- a/websocket-sharp/Server/WebSocketServiceManager.cs +++ b/websocket-sharp/Server/WebSocketServiceManager.cs @@ -594,19 +594,32 @@ namespace WebSocketSharp.Server } /// - /// Sends binary asynchronously to every client in - /// the WebSocket services. + /// Sends the specified asynchronously to + /// every client in the WebSocket services. /// /// - /// This method doesn't wait for the send to be complete. + /// This method does not wait for the send to be complete. /// /// - /// An array of that represents the binary data to send. + /// An array of that represents + /// the binary data to send. /// /// - /// An delegate that references the method(s) called when - /// the send is complete. + /// + /// An delegate or + /// if not needed. + /// + /// + /// That delegate invokes the method called when + /// the send is complete. + /// /// + /// + /// The current state of the manager is not Start. + /// + /// + /// is . + /// public void BroadcastAsync (byte[] data, Action completed) { if (_state != ServerState.Start) {