From 6c82c9ed64f20b198a3c4cbb3e24d77a98e4c091 Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 5 Aug 2017 16:15:39 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/WebSocketSessionManager.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/websocket-sharp/Server/WebSocketSessionManager.cs b/websocket-sharp/Server/WebSocketSessionManager.cs index db5326b1..12c0937d 100644 --- a/websocket-sharp/Server/WebSocketSessionManager.cs +++ b/websocket-sharp/Server/WebSocketSessionManager.cs @@ -430,11 +430,21 @@ namespace WebSocketSharp.Server } /// - /// Sends text to every client in the WebSocket service. + /// Sends the specified to every client in + /// the WebSocket service. /// /// /// A that represents the text data to send. /// + /// + /// The current state of the manager is not Start. + /// + /// + /// is . + /// + /// + /// could not be UTF-8-encoded. + /// public void Broadcast (string data) { if (_state != ServerState.Start) {