[Modify] Edit it

This commit is contained in:
sta 2017-05-30 15:49:42 +09:00
parent a95448c3bb
commit bbae618d7e

View File

@ -1303,28 +1303,36 @@ namespace WebSocketSharp
} }
/// <summary> /// <summary>
/// Determines whether the specified <see cref="ushort"/> is in /// Determines whether the specified <see cref="ushort"/> is in the
/// the allowable range of the WebSocket close status code. /// range of the status code for the WebSocket connection close.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// Unallowable ranges are the following: /// <para>
/// The ranges for the status code for the close are the following:
/// </para>
/// <list type="bullet"> /// <list type="bullet">
/// <item> /// <item>
/// <term> /// <term>
/// Numbers in the range 0-999 are not used. /// 1000-2999: These numbers are reserved for definition by
/// the WebSocket protocol.
/// </term> /// </term>
/// </item> /// </item>
/// <item> /// <item>
/// <term> /// <term>
/// Numbers greater than 4999 are out of the reserved /// 3000-3999: These numbers are reserved for use by libraries,
/// close status code ranges. /// frameworks, and applications.
/// </term>
/// </item>
/// <item>
/// <term>
/// 4000-4999: These numbers are reserved for private use.
/// </term> /// </term>
/// </item> /// </item>
/// </list> /// </list>
/// </remarks> /// </remarks>
/// <returns> /// <returns>
/// <c>true</c> if <paramref name="value"/> is in the allowable /// <c>true</c> if <paramref name="value"/> is in the range of
/// range of the close status code; otherwise, <c>false</c>. /// the status code for the close; otherwise, <c>false</c>.
/// </returns> /// </returns>
/// <param name="value"> /// <param name="value">
/// A <see cref="ushort"/> to test. /// A <see cref="ushort"/> to test.