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. + /// /// /// ///