From 5209c490e35bce29fdf8db094a5243dd4bbf8b80 Mon Sep 17 00:00:00 2001 From: sta Date: Fri, 4 Nov 2016 16:14:57 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/WebSocketServer.cs | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs index 7bfda9d8..5a2230d7 100644 --- a/websocket-sharp/Server/WebSocketServer.cs +++ b/websocket-sharp/Server/WebSocketServer.cs @@ -902,19 +902,18 @@ namespace WebSocketSharp.Server } /// - /// Adds a WebSocket service with the specified behavior and . + /// Adds a WebSocket service with the specified behavior and + /// . /// - /// - /// This method converts to URL-decoded string, - /// and removes '/' from tail end of . - /// /// - /// A that represents the absolute path to the service to add. + /// A that represents an absolute path to + /// the service. It will be converted to a URL-decoded string, + /// and will be removed '/' from tail end if any. /// /// - /// The type of the behavior of the service to add. The TBehaviorWithNew must inherit - /// the class, and must have a public parameterless - /// constructor. + /// The type of the behavior for the service. It must inherit + /// the class, and must have + /// a public parameterless constructor. /// public void AddWebSocketService (string path) where TBehaviorWithNew : WebSocketBehavior, new ()