From eb59c733be1db4b668c0e3b1ecfa0538665e8366 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 5 Dec 2018 20:08:05 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/HttpServer.cs | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/websocket-sharp/Server/HttpServer.cs b/websocket-sharp/Server/HttpServer.cs index ff2ae4f4..5cddfa92 100644 --- a/websocket-sharp/Server/HttpServer.cs +++ b/websocket-sharp/Server/HttpServer.cs @@ -1406,25 +1406,24 @@ namespace WebSocketSharp.Server } /// - /// Removes a WebSocket service with the specified . + /// Removes a WebSocket service with the specified path. /// /// - /// - /// is converted to a URL-decoded string and - /// '/' is trimmed from the end of the converted string if any. - /// - /// - /// The service is stopped with close status 1001 (going away) - /// if it has already started. - /// + /// The service is stopped with close status 1001 (going away) + /// if it has already started. /// /// /// true if the service is successfully found and removed; /// otherwise, false. /// /// - /// A that represents an absolute path to - /// the service to remove. + /// + /// A that represents an absolute path to + /// the service to remove. + /// + /// + /// / is trimmed from the end of the string if present. + /// /// /// /// is .