From e72e68502f95c637a3e5b22b8582e7f001b2d3f4 Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 29 Nov 2018 20:38:01 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/WebSocketServer.cs | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs index c4226220..4d01351e 100644 --- a/websocket-sharp/Server/WebSocketServer.cs +++ b/websocket-sharp/Server/WebSocketServer.cs @@ -1133,24 +1133,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 - /// have a public parameterless constructor. + /// It must inherit the class. + /// + /// + /// And also, it must have a public parameterless constructor. /// /// ///