From 6cc77601dde32932401fa03dd2cf44faab778651 Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 6 Apr 2017 17:04:11 +0900 Subject: [PATCH] [Modify] Edit it --- .../Server/WebSocketServiceManager.cs | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/websocket-sharp/Server/WebSocketServiceManager.cs b/websocket-sharp/Server/WebSocketServiceManager.cs index afb8d881..b42aed68 100644 --- a/websocket-sharp/Server/WebSocketServiceManager.cs +++ b/websocket-sharp/Server/WebSocketServiceManager.cs @@ -773,14 +773,22 @@ namespace WebSocketSharp.Server } /// - /// Sends a Ping to every client in the WebSocket services. + /// Sends a ping to every client in the WebSocket services. /// /// - /// A Dictionary<string, Dictionary<string, bool>> that contains - /// a collection of pairs of a service path and a collection of pairs of a session ID - /// and a value indicating whether the manager received a Pong from each client in a time, - /// or if this method isn't available. + /// + /// A Dictionary<string, Dictionary<string, bool>>. + /// + /// + /// It contains a collection of pairs of a service path and + /// another collection of pairs of a session ID and a value + /// indicating whether a pong has been received within a time + /// from a client. + /// /// + /// + /// The current state of the manager is not Start. + /// public Dictionary> Broadping () { if (_state != ServerState.Start) {