From 0afef43f8ad0b233d96c7d69f97ac08750fd39a8 Mon Sep 17 00:00:00 2001 From: sta Date: Sun, 2 Dec 2018 17:59:02 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/HttpServer.cs | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/websocket-sharp/Server/HttpServer.cs b/websocket-sharp/Server/HttpServer.cs index 7c6bdf2b..6b3917d9 100644 --- a/websocket-sharp/Server/HttpServer.cs +++ b/websocket-sharp/Server/HttpServer.cs @@ -1139,28 +1139,29 @@ namespace WebSocketSharp.Server #region Public Methods /// - /// Adds a WebSocket service with the specified behavior, - /// , and . + /// Adds a WebSocket service with the specified behavior, path, + /// and delegate. /// - /// - /// is converted to a URL-decoded string and - /// '/' is trimmed from the end of the converted string if any. - /// /// - /// A that represents an absolute path to - /// the service to add. + /// + /// 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 for creating - /// a new session instance for the service. + /// 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 method must create a new instance of the specified + /// behavior class and return it. /// /// ///