Modified a few xml doc comments in CloseStatusCode.cs

This commit is contained in:
sta 2014-09-26 13:53:46 +09:00
parent 8dceb1fb0c
commit 7458f65033

View File

@ -70,17 +70,17 @@ namespace WebSocketSharp
IncorrectData = 1003, IncorrectData = 1003,
/// <summary> /// <summary>
/// Equivalent to close status 1004. /// Equivalent to close status 1004.
/// Still undefined. 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. Reserved value. /// Indicates that no status code was actually present. A Reserved value.
/// </summary> /// </summary>
NoStatusCode = 1005, NoStatusCode = 1005,
/// <summary> /// <summary>
/// Equivalent to close status 1006. /// Equivalent to close status 1006.
/// Indicates that the connection was closed abnormally. Reserved value. /// Indicates that the connection was closed abnormally. A Reserved value.
/// </summary> /// </summary>
Abnormal = 1006, Abnormal = 1006,
/// <summary> /// <summary>
@ -117,7 +117,7 @@ namespace WebSocketSharp
/// <summary> /// <summary>
/// Equivalent to close status 1015. /// Equivalent to close status 1015.
/// Indicates that the connection was closed due to a failure to perform a TLS handshake. /// Indicates that the connection was closed due to a failure to perform a TLS handshake.
/// Reserved value. /// A Reserved value.
/// </summary> /// </summary>
TlsHandshakeFailure = 1015 TlsHandshakeFailure = 1015
} }