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) {