diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs index 0f3ca017..8815ffe1 100644 --- a/websocket-sharp/Server/WebSocketServer.cs +++ b/websocket-sharp/Server/WebSocketServer.cs @@ -1033,10 +1033,14 @@ 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. + /// /// /// A that represents the status code indicating /// the reason for the close. The status codes are defined in @@ -1045,7 +1049,7 @@ namespace WebSocketSharp.Server /// /// /// A that represents the reason for the close. - /// The size must be 123 bytes or less. + /// The size must be 123 bytes or less in UTF-8. /// public void Stop (ushort code, string reason) {