From be392541a05f00abd5c58e27a2a6d194a07ff0e8 Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 30 Jan 2017 16:33:54 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/WebSocketServer.cs | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs index ca3eb3c0..c4ed5f9a 100644 --- a/websocket-sharp/Server/WebSocketServer.cs +++ b/websocket-sharp/Server/WebSocketServer.cs @@ -252,32 +252,33 @@ namespace WebSocketSharp.Server } /// - /// Initializes a new instance of the class with - /// the specified , , + /// Initializes a new instance of the class + /// with the specified , , /// and . /// /// - /// An instance initialized by this constructor listens for the incoming connection requests on + /// The new instance listens for the incoming handshake requests on /// and . /// /// - /// A that represents the local IP address of the server. + /// A that represents the local IP address + /// for the server. /// /// /// An that represents the port number on which to listen. /// /// - /// A that indicates providing a secure connection or not. - /// (true indicates providing a secure connection.) + /// A that specifies providing secure connections or not. + /// true specifies providing secure connections. /// /// /// is . /// /// - /// isn't a local IP address. + /// is not a local IP address. /// /// - /// isn't between 1 and 65535 inclusive. + /// is less than 1 or greater than 65535. /// public WebSocketServer (System.Net.IPAddress address, int port, bool secure) {