Refactored a few for CloseStatusCode.cs

This commit is contained in:
sta 2015-05-03 15:07:54 +09:00
parent 353abd0d03
commit 79ea2b74c7

View File

@ -102,14 +102,14 @@ namespace WebSocketSharp
TooBig = 1009, TooBig = 1009,
/// <summary> /// <summary>
/// Equivalent to close status 1010. /// Equivalent to close status 1010.
/// Indicates that the client is terminating the connection because it has expected /// 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 /// the server to negotiate one or more extension, but the server didn't return
/// 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 the server is terminating the connection because it has encountered /// Indicates that a server is terminating the connection because it has encountered
/// an unexpected condition that prevented it from fulfilling the request. /// an unexpected condition that prevented it from fulfilling the request.
/// </summary> /// </summary>
ServerError = 1011, ServerError = 1011,