diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs
index 55a55f5c..f0b9ba16 100644
--- a/websocket-sharp/Server/WebSocketServer.cs
+++ b/websocket-sharp/Server/WebSocketServer.cs
@@ -1014,101 +1014,6 @@ namespace WebSocketSharp.Server
#region Public Methods
- ///
- /// Adds a WebSocket service with the specified behavior, path,
- /// and delegate.
- ///
- ///
- ///
- /// A that represents an absolute path to
- /// the service to add.
- ///
- ///
- /// / is trimmed from the end of the string if present.
- ///
- ///
- ///
- ///
- /// A Func<TBehavior> delegate.
- ///
- ///
- /// It invokes the method called when creating a new session
- /// instance for the service.
- ///
- ///
- /// The method must create a new instance of the specified
- /// behavior class and return it.
- ///
- ///
- ///
- ///
- /// The type of the behavior for the service.
- ///
- ///
- /// It must inherit the class.
- ///
- ///
- ///
- ///
- /// is .
- ///
- ///
- /// -or-
- ///
- ///
- /// is .
- ///
- ///
- ///
- ///
- /// is an empty string.
- ///
- ///
- /// -or-
- ///
- ///
- /// is not an absolute path.
- ///
- ///
- /// -or-
- ///
- ///
- /// includes either or both
- /// query and fragment components.
- ///
- ///
- /// -or-
- ///
- ///
- /// is already in use.
- ///
- ///
- [Obsolete ("This method will be removed. Use added one instead.")]
- public void AddWebSocketService (
- string path, Func creator
- )
- where TBehavior : WebSocketBehavior
- {
- if (path == null)
- throw new ArgumentNullException ("path");
-
- if (creator == null)
- throw new ArgumentNullException ("creator");
-
- if (path.Length == 0)
- throw new ArgumentException ("An empty string.", "path");
-
- if (path[0] != '/')
- throw new ArgumentException ("Not an absolute path.", "path");
-
- if (path.IndexOfAny (new[] { '?', '#' }) > -1) {
- var msg = "It includes either or both query and fragment components.";
- throw new ArgumentException (msg, "path");
- }
-
- _services.Add (path, creator);
- }
-
///
/// Adds a WebSocket service with the specified behavior and path.
///