From 56a39a44cbb198cc484b033164f6cb88fd3cdf75 Mon Sep 17 00:00:00 2001 From: sta Date: Fri, 30 Nov 2018 17:35:15 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/WebSocketServer.cs | 25 +++++++++++++---------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs index 4d01351e..2d68ffd0 100644 --- a/websocket-sharp/Server/WebSocketServer.cs +++ b/websocket-sharp/Server/WebSocketServer.cs @@ -1189,16 +1189,17 @@ namespace WebSocketSharp.Server } /// - /// 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. + /// /// /// /// @@ -1206,7 +1207,7 @@ namespace WebSocketSharp.Server /// if not needed. /// /// - /// That delegate invokes the method called for initializing + /// The delegate invokes the method called when initializing /// a new session instance for the service. /// /// @@ -1215,8 +1216,10 @@ namespace WebSocketSharp.Server /// 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. /// /// ///