From 5631e78804e8a866f991dee41f1b50d35d76e639 Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 3 Dec 2018 20:48:29 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/HttpServer.cs | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/websocket-sharp/Server/HttpServer.cs b/websocket-sharp/Server/HttpServer.cs index 6b3917d9..f7362671 100644 --- a/websocket-sharp/Server/HttpServer.cs +++ b/websocket-sharp/Server/HttpServer.cs @@ -1234,24 +1234,26 @@ namespace WebSocketSharp.Server } /// - /// Adds a WebSocket service with the specified behavior and - /// . + /// Adds a WebSocket service with the specified behavior and path. /// - /// - /// 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. + /// /// /// /// /// The type of the behavior for the service. /// /// - /// It must inherit the class and - /// must have a public parameterless constructor. + /// It must inherit the class. + /// + /// + /// And also, it must have a public parameterless constructor. /// /// ///