From 581a03e08ddf755239777ae18096bba628152ed8 Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 5 Aug 2017 16:30:07 +0900 Subject: [PATCH] [Modify] Edit it --- .../Server/WebSocketSessionManager.cs | 24 +++++++++++++++---- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/websocket-sharp/Server/WebSocketSessionManager.cs b/websocket-sharp/Server/WebSocketSessionManager.cs index b5a59a96..3b70eeac 100644 --- a/websocket-sharp/Server/WebSocketSessionManager.cs +++ b/websocket-sharp/Server/WebSocketSessionManager.cs @@ -511,19 +511,33 @@ namespace WebSocketSharp.Server } /// - /// Sends text asynchronously to every client in - /// the WebSocket service. + /// Sends the specified asynchronously to + /// every client in the WebSocket service. /// /// - /// This method doesn't wait for the send to be complete. + /// This method does not wait for the send to be complete. /// /// /// A that represents the text 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 . + /// + /// + /// could not be UTF-8-encoded. + /// public void BroadcastAsync (string data, Action completed) { if (_state != ServerState.Start) {