From adefc5fe43f47c2703b51bafe007de437945ef56 Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 29 Oct 2015 17:37:52 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/CloseStatusCode.cs | 64 +++++++++++++----------------- 1 file changed, 28 insertions(+), 36 deletions(-) diff --git a/websocket-sharp/CloseStatusCode.cs b/websocket-sharp/CloseStatusCode.cs index c66a1efa..3c534c40 100644 --- a/websocket-sharp/CloseStatusCode.cs +++ b/websocket-sharp/CloseStatusCode.cs @@ -35,11 +35,11 @@ namespace WebSocketSharp /// /// /// - /// The values of the status code are defined in + /// The values of this enumeration are defined in /// Section 7.4 of RFC 6455. /// /// - /// "Reserved value" must not be set as a status code in a close control frame by + /// "Reserved value" must not be set as a status code in a connection close frame by /// an endpoint. It's designated for use in applications expecting a status code to /// indicate that the connection was closed due to the system grounds. /// @@ -47,76 +47,68 @@ namespace WebSocketSharp public enum CloseStatusCode : ushort { /// - /// Equivalent to close status 1000. - /// Indicates a normal close. + /// Equivalent to close status 1000. Indicates a normal close. /// Normal = 1000, /// - /// Equivalent to close status 1001. - /// Indicates that an endpoint is going away. + /// Equivalent to close status 1001. Indicates that an endpoint is going away. /// Away = 1001, /// - /// Equivalent to close status 1002. - /// Indicates that an endpoint is terminating the connection due to a protocol error. + /// Equivalent to close status 1002. Indicates that an endpoint is terminating + /// the connection due to a protocol error. /// ProtocolError = 1002, /// - /// Equivalent to close status 1003. - /// Indicates that an endpoint is terminating the connection because it has received - /// a type of data that it cannot accept. + /// Equivalent to close status 1003. Indicates that an endpoint is terminating + /// the connection because it has received a type of data that it cannot accept. /// UnsupportedData = 1003, /// - /// Equivalent to close status 1004. - /// Still undefined. A Reserved value. + /// Equivalent to close status 1004. Still undefined. A Reserved value. /// Undefined = 1004, /// - /// Equivalent to close status 1005. - /// Indicates that no status code was actually present. A Reserved value. + /// Equivalent to close status 1005. Indicates that no status code was actually present. + /// A Reserved value. /// NoStatus = 1005, /// - /// Equivalent to close status 1006. - /// Indicates that the connection was closed abnormally. A Reserved value. + /// Equivalent to close status 1006. Indicates that the connection was closed abnormally. + /// A Reserved value. /// Abnormal = 1006, /// - /// Equivalent to close status 1007. - /// Indicates that an endpoint is terminating the connection because it has received - /// a message that contains data that isn't consistent with the type of the message. + /// Equivalent to close status 1007. Indicates that an endpoint is terminating + /// the connection because it has received a message that contains data that + /// isn't consistent with the type of the message. /// InvalidData = 1007, /// - /// Equivalent to close status 1008. - /// Indicates that an endpoint is terminating the connection because it has received - /// a message that violates its policy. + /// Equivalent to close status 1008. Indicates that an endpoint is terminating + /// the connection because it has received a message that violates its policy. /// PolicyViolation = 1008, /// - /// Equivalent to close status 1009. - /// Indicates that an endpoint is terminating the connection because it has received - /// a message that is too big to process. + /// Equivalent to close status 1009. Indicates that an endpoint is terminating + /// the connection because it has received a message that is too big to process. /// TooBig = 1009, /// - /// Equivalent to close status 1010. - /// Indicates that a client is terminating the connection because it has expected - /// the server to negotiate one or more extension, but the server didn't return - /// them in the handshake response. + /// Equivalent to close status 1010. Indicates that a client is terminating + /// the connection because it has expected the server to negotiate one or more extension, + /// but the server didn't return them in the handshake response. /// MandatoryExtension = 1010, /// - /// Equivalent to close status 1011. - /// Indicates that a server is terminating the connection because it has encountered - /// an unexpected condition that prevented it from fulfilling the request. + /// Equivalent to close status 1011. Indicates that a server is terminating + /// the connection because it has encountered an unexpected condition that + /// prevented it from fulfilling the request. /// ServerError = 1011, /// - /// Equivalent to close status 1015. - /// Indicates that the connection was closed due to a failure to perform a TLS handshake. - /// A Reserved value. + /// Equivalent to close status 1015. Indicates that the connection was closed + /// due to a failure to perform a TLS handshake. A Reserved value. /// TlsHandshakeFailure = 1015 }