diff --git a/websocket-sharp/Server/WebSocketServiceManager.cs b/websocket-sharp/Server/WebSocketServiceManager.cs
index 3a7284bf..23822958 100644
--- a/websocket-sharp/Server/WebSocketServiceManager.cs
+++ b/websocket-sharp/Server/WebSocketServiceManager.cs
@@ -236,28 +236,6 @@ namespace WebSocketSharp.Server
}
}
- ///
- /// Gets the total number of the sessions in the WebSocket services.
- ///
- ///
- /// An that represents the total number of
- /// the sessions in the services.
- ///
- [Obsolete ("This property will be removed.")]
- public int SessionCount {
- get {
- var cnt = 0;
- foreach (var host in Hosts) {
- if (_state != ServerState.Start)
- break;
-
- cnt += host.Sessions.Count;
- }
-
- return cnt;
- }
- }
-
///
/// Gets or sets the time to wait for the response to the WebSocket Ping
/// or Close.