From 9858b8e5a35c6d50461a8274dfcdc90307783997 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 2 Aug 2017 17:08:12 +0900 Subject: [PATCH] [Modify] Edit it --- .../Server/WebSocketSessionManager.cs | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/websocket-sharp/Server/WebSocketSessionManager.cs b/websocket-sharp/Server/WebSocketSessionManager.cs index 7e649b31..1d2dc604 100644 --- a/websocket-sharp/Server/WebSocketSessionManager.cs +++ b/websocket-sharp/Server/WebSocketSessionManager.cs @@ -557,13 +557,21 @@ namespace WebSocketSharp.Server } /// - /// Sends a Ping to every client in the WebSocket service. + /// Sends a ping to every client in the WebSocket service. /// /// - /// A Dictionary<string, bool> that contains a collection of pairs of - /// a session ID and a value indicating whether the manager received a Pong from - /// each client in a time. + /// + /// A Dictionary<string, bool>. + /// + /// + /// It represents a collection of pairs of a session ID and + /// a value indicating whether a pong has been received from + /// its client within a time. + /// /// + /// + /// The current state of the manager is not Start. + /// public Dictionary Broadping () { if (_state != ServerState.Start) {