[Modify] Polish it

This commit is contained in:
sta 2015-10-29 17:37:52 +09:00
parent c9c6fdd7ad
commit adefc5fe43

View File

@ -35,11 +35,11 @@ namespace WebSocketSharp
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para> /// <para>
/// The values of the status code are defined in /// The values of this enumeration are defined in
/// <see href="http://tools.ietf.org/html/rfc6455#section-7.4">Section 7.4</see> of RFC 6455. /// <see href="http://tools.ietf.org/html/rfc6455#section-7.4">Section 7.4</see> of RFC 6455.
/// </para> /// </para>
/// <para> /// <para>
/// "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 /// 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. /// indicate that the connection was closed due to the system grounds.
/// </para> /// </para>
@ -47,76 +47,68 @@ namespace WebSocketSharp
public enum CloseStatusCode : ushort public enum CloseStatusCode : ushort
{ {
/// <summary> /// <summary>
/// Equivalent to close status 1000. /// Equivalent to close status 1000. Indicates a normal close.
/// Indicates a normal close.
/// </summary> /// </summary>
Normal = 1000, Normal = 1000,
/// <summary> /// <summary>
/// Equivalent to close status 1001. /// Equivalent to close status 1001. Indicates that an endpoint is going away.
/// Indicates that an endpoint is going away.
/// </summary> /// </summary>
Away = 1001, Away = 1001,
/// <summary> /// <summary>
/// Equivalent to close status 1002. /// Equivalent to close status 1002. Indicates that an endpoint is terminating
/// Indicates that an endpoint is terminating the connection due to a protocol error. /// the connection due to a protocol error.
/// </summary> /// </summary>
ProtocolError = 1002, ProtocolError = 1002,
/// <summary> /// <summary>
/// Equivalent to close status 1003. /// Equivalent to close status 1003. Indicates that an endpoint is terminating
/// Indicates that an endpoint is terminating the connection because it has received /// the connection because it has received a type of data that it cannot accept.
/// a type of data that it cannot accept.
/// </summary> /// </summary>
UnsupportedData = 1003, UnsupportedData = 1003,
/// <summary> /// <summary>
/// Equivalent to close status 1004. /// Equivalent to close status 1004. Still undefined. A Reserved value.
/// Still undefined. A Reserved value.
/// </summary> /// </summary>
Undefined = 1004, Undefined = 1004,
/// <summary> /// <summary>
/// Equivalent to close status 1005. /// Equivalent to close status 1005. Indicates that no status code was actually present.
/// Indicates that no status code was actually present. A Reserved value. /// A Reserved value.
/// </summary> /// </summary>
NoStatus = 1005, NoStatus = 1005,
/// <summary> /// <summary>
/// Equivalent to close status 1006. /// Equivalent to close status 1006. Indicates that the connection was closed abnormally.
/// Indicates that the connection was closed abnormally. A Reserved value. /// A Reserved value.
/// </summary> /// </summary>
Abnormal = 1006, Abnormal = 1006,
/// <summary> /// <summary>
/// Equivalent to close status 1007. /// Equivalent to close status 1007. Indicates that an endpoint is terminating
/// Indicates that an endpoint is terminating the connection because it has received /// the connection because it has received a message that contains data that
/// a message that contains data that isn't consistent with the type of the message. /// isn't consistent with the type of the message.
/// </summary> /// </summary>
InvalidData = 1007, InvalidData = 1007,
/// <summary> /// <summary>
/// Equivalent to close status 1008. /// Equivalent to close status 1008. Indicates that an endpoint is terminating
/// Indicates that an endpoint is terminating the connection because it has received /// the connection because it has received a message that violates its policy.
/// a message that violates its policy.
/// </summary> /// </summary>
PolicyViolation = 1008, PolicyViolation = 1008,
/// <summary> /// <summary>
/// Equivalent to close status 1009. /// Equivalent to close status 1009. Indicates that an endpoint is terminating
/// Indicates that an endpoint is terminating the connection because it has received /// the connection because it has received a message that is too big to process.
/// a message that is too big to process.
/// </summary> /// </summary>
TooBig = 1009, TooBig = 1009,
/// <summary> /// <summary>
/// Equivalent to close status 1010. /// Equivalent to close status 1010. Indicates that a client is terminating
/// Indicates that a client is terminating the connection because it has expected /// the connection because it has expected the server to negotiate one or more extension,
/// the server to negotiate one or more extension, but the server didn't return /// but the server didn't return them in the handshake response.
/// them in the handshake response.
/// </summary> /// </summary>
MandatoryExtension = 1010, MandatoryExtension = 1010,
/// <summary> /// <summary>
/// Equivalent to close status 1011. /// Equivalent to close status 1011. Indicates that a server is terminating
/// Indicates that a server is terminating the connection because it has encountered /// the connection because it has encountered an unexpected condition that
/// an unexpected condition that prevented it from fulfilling the request. /// prevented it from fulfilling the request.
/// </summary> /// </summary>
ServerError = 1011, ServerError = 1011,
/// <summary> /// <summary>
/// Equivalent to close status 1015. /// Equivalent to close status 1015. Indicates that the connection was closed
/// Indicates that the connection was closed due to a failure to perform a TLS handshake. /// due to a failure to perform a TLS handshake. A Reserved value.
/// A Reserved value.
/// </summary> /// </summary>
TlsHandshakeFailure = 1015 TlsHandshakeFailure = 1015
} }