From 29c3156a973f302d0537b0b5a0c0df45224c0f6b Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 1 Jun 2017 16:17:24 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/HttpServer.cs | 30 +++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/websocket-sharp/Server/HttpServer.cs b/websocket-sharp/Server/HttpServer.cs index 507722ef..68c4980d 100644 --- a/websocket-sharp/Server/HttpServer.cs +++ b/websocket-sharp/Server/HttpServer.cs @@ -1026,19 +1026,31 @@ namespace WebSocketSharp.Server } /// - /// Stops receiving the incoming requests, and closes the connections with - /// the specified and for - /// the WebSocket connection close. + /// Stops receiving incoming requests and closes each connection. /// + /// + /// This method does nothing if the server is not started, + /// it is shutting down, or it has already stopped. + /// /// - /// A that represents the status code indicating - /// the reason for the WebSocket connection close. The status codes are - /// defined in - /// Section 7.4 of RFC 6455. + /// + /// A that represents the status code + /// indicating the reason for the WebSocket connection close. + /// + /// + /// The status codes are defined in + /// + /// Section 7.4 of RFC 6455. + /// /// /// - /// A that represents the reason for the WebSocket - /// connection close. The size must be 123 bytes or less. + /// + /// A that represents the reason for + /// the WebSocket connection close. + /// + /// + /// The size must be 123 bytes or less in UTF-8. + /// /// /// ///