diff --git a/websocket-sharp/Server/WebSocketServiceManager.cs b/websocket-sharp/Server/WebSocketServiceManager.cs
index b410a45e..d30f4655 100644
--- a/websocket-sharp/Server/WebSocketServiceManager.cs
+++ b/websocket-sharp/Server/WebSocketServiceManager.cs
@@ -554,63 +554,6 @@ namespace WebSocketSharp.Server
}
}
- ///
- /// Sends a ping with to every client in
- /// the WebSocket services.
- ///
- ///
- ///
- /// A Dictionary<string, Dictionary<string, bool>>.
- ///
- ///
- /// It represents 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 from the client within a time.
- ///
- ///
- ///
- ///
- /// 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.
- ///
- ///
- /// could not be UTF-8-encoded.
- ///
- ///
- /// The size of is greater than 125 bytes.
- ///
- [Obsolete ("This method will be removed.")]
- public Dictionary> Broadping (string message)
- {
- if (_state != ServerState.Start) {
- var msg = "The current state of the manager is not Start.";
- throw new InvalidOperationException (msg);
- }
-
- if (message.IsNullOrEmpty ())
- return broadping (WebSocketFrame.EmptyPingBytes, _waitTime);
-
- byte[] bytes;
- if (!message.TryGetUTF8EncodedBytes (out bytes)) {
- var msg = "It could not be UTF-8-encoded.";
- throw new ArgumentException (msg, "message");
- }
-
- if (bytes.Length > 125) {
- var msg = "Its size is greater than 125 bytes.";
- throw new ArgumentOutOfRangeException ("message", msg);
- }
-
- var frame = WebSocketFrame.CreatePingFrame (bytes, false);
- return broadping (frame.ToArray (), _waitTime);
- }
-
///
/// Removes all WebSocket services managed by the manager.
///