From 6d1eea5c4eb017c2e310721b080a8eefbf1c1f79 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 28 Nov 2018 19:39:56 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/WebSocketServer.cs | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs index b1b7bf02..c4226220 100644 --- a/websocket-sharp/Server/WebSocketServer.cs +++ b/websocket-sharp/Server/WebSocketServer.cs @@ -1038,23 +1038,24 @@ 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 + /// It invokes the method called when creating a new session /// instance for the service. /// ///