[Modify] Edit it

This commit is contained in:
sta 2021-11-17 19:41:43 +09:00
parent 6493ac1f1b
commit 46b5765817

View File

@ -898,15 +898,14 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Closes the specified session with <paramref name="code"/> and /// Closes the session with the specified ID, code, and reason.
/// <paramref name="reason"/>.
/// </summary> /// </summary>
/// <param name="id"> /// <param name="id">
/// A <see cref="string"/> that represents the ID of the session to close. /// A <see cref="string"/> that specifies the ID of the session to close.
/// </param> /// </param>
/// <param name="code"> /// <param name="code">
/// <para> /// <para>
/// A <see cref="ushort"/> that represents the status code indicating /// A <see cref="ushort"/> that specifies the status code indicating
/// the reason for the close. /// the reason for the close.
/// </para> /// </para>
/// <para> /// <para>
@ -917,7 +916,7 @@ namespace WebSocketSharp.Server
/// </param> /// </param>
/// <param name="reason"> /// <param name="reason">
/// <para> /// <para>
/// A <see cref="string"/> that represents the reason for the close. /// A <see cref="string"/> that specifies the reason for the close.
/// </para> /// </para>
/// <para> /// <para>
/// The size must be 123 bytes or less in UTF-8. /// The size must be 123 bytes or less in UTF-8.
@ -940,8 +939,7 @@ namespace WebSocketSharp.Server
/// -or- /// -or-
/// </para> /// </para>
/// <para> /// <para>
/// <paramref name="code"/> is 1005 (no status) and there is /// <paramref name="code"/> is 1005 (no status) and there is reason.
/// <paramref name="reason"/>.
/// </para> /// </para>
/// <para> /// <para>
/// -or- /// -or-