[Modify] Edit it

This commit is contained in:
sta 2017-01-20 16:33:32 +09:00
parent cba0dd2238
commit c646743841

View File

@ -1042,14 +1042,19 @@ namespace WebSocketSharp.Server
/// it is shutting down, or it has already stopped. /// it is shutting down, or it has already stopped.
/// </remarks> /// </remarks>
/// <param name="code"> /// <param name="code">
/// A <see cref="ushort"/> that represents the status code indicating /// <para>
/// the reason for the close. The status codes are defined in /// A <see cref="ushort"/> that represents the status code
/// <see href="http://tools.ietf.org/html/rfc6455#section-7.4"> /// indicating the reason for the close.
/// Section 7.4</see> of RFC 6455. /// </para>
/// <para>
/// The status codes are defined in
/// <see href="http://tools.ietf.org/html/rfc6455#section-7.4">
/// Section 7.4</see> of RFC 6455.
/// </para>
/// </param> /// </param>
/// <param name="reason"> /// <param name="reason">
/// A <see cref="string"/> that represents the reason for the close. /// A <see cref="string"/> that represents the reason for
/// The size must be 123 bytes or less in UTF-8. /// the close. The size must be 123 bytes or less in UTF-8.
/// </param> /// </param>
public void Stop (ushort code, string reason) public void Stop (ushort code, string reason)
{ {