diff --git a/websocket-sharp/Server/WebSocketServiceManager.cs b/websocket-sharp/Server/WebSocketServiceManager.cs
index 152cd084..4b22248c 100644
--- a/websocket-sharp/Server/WebSocketServiceManager.cs
+++ b/websocket-sharp/Server/WebSocketServiceManager.cs
@@ -800,19 +800,36 @@ namespace WebSocketSharp.Server
}
///
- /// Sends a Ping with the specified to every client in
- /// the WebSocket services.
+ /// Sends a ping with the specified 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 or
- /// is invalid.
+ ///
+ /// 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.
+ ///
///
///
/// A that represents the message to send.
+ /// The size must be 125 bytes or less in UTF-8.
///
+ ///
+ /// The current state of the manager is not Start.
+ ///
+ ///
+ /// is .
+ ///
+ ///
+ /// could not be UTF-8-encoded.
+ ///
+ ///
+ /// The size of is greater than 125 bytes.
+ ///
public Dictionary> Broadping (string message)
{
if (_state != ServerState.Start) {