From cba0dd223837d70c0bf49cd8748834e16d87c9cc Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 19 Jan 2017 16:15:37 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/WebSocketServer.cs | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs index e8013094..74a6e455 100644 --- a/websocket-sharp/Server/WebSocketServer.cs +++ b/websocket-sharp/Server/WebSocketServer.cs @@ -1063,17 +1063,22 @@ namespace WebSocketSharp.Server } /// - /// Stops receiving the WebSocket handshake requests, and closes - /// the WebSocket connections with the specified and - /// . + /// Stops receiving the WebSocket handshake requests, + /// and closes the WebSocket connections with the specified + /// and . /// + /// + /// This method does nothing if the server is not started, + /// it is shutting down, or it has already stopped. + /// /// - /// One of the enum values that represents - /// the status code indicating the reason for the close. + /// One of the enum values. + /// It represents the status code indicating the reason for + /// the close. /// /// - /// A that represents the reason for the close. - /// The size must be 123 bytes or less. + /// A that represents the reason for + /// the close. The size must be 123 bytes or less in UTF-8. /// public void Stop (CloseStatusCode code, string reason) {