From a391ce84c984a4251c81cd926336cf8c79cc93d2 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 16 Nov 2016 16:38:48 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/WebSocketState.cs | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/websocket-sharp/WebSocketState.cs b/websocket-sharp/WebSocketState.cs index 469350cb..68db661b 100644 --- a/websocket-sharp/WebSocketState.cs +++ b/websocket-sharp/WebSocketState.cs @@ -35,27 +35,30 @@ namespace WebSocketSharp /// /// /// The values of this enumeration are defined in - /// The WebSocket API. + /// + /// The WebSocket API. /// public enum WebSocketState : ushort { /// - /// Equivalent to numeric value 0. Indicates that the connection hasn't yet been established. + /// Equivalent to numeric value 0. Indicates that the connection has not + /// yet been established. /// Connecting = 0, /// - /// Equivalent to numeric value 1. Indicates that the connection has been established, - /// and the communication is possible. + /// Equivalent to numeric value 1. Indicates that the connection has + /// been established, and the communication is possible. /// Open = 1, /// - /// Equivalent to numeric value 2. Indicates that the connection is going through - /// the closing handshake, or the WebSocket.Close method has been invoked. + /// Equivalent to numeric value 2. Indicates that the connection is + /// going through the closing handshake, or the close method has + /// been invoked. /// Closing = 2, /// - /// Equivalent to numeric value 3. Indicates that the connection has been closed or - /// couldn't be established. + /// Equivalent to numeric value 3. Indicates that the connection has + /// been closed or could not be established. /// Closed = 3 }