[Modify] Edit it

This commit is contained in:
sta 2018-07-20 20:07:02 +09:00
parent 8f8c123567
commit dac30f3eda

View File

@ -2990,22 +2990,21 @@ namespace WebSocketSharp
} }
/// <summary> /// <summary>
/// Closes the connection asynchronously with the specified /// Closes the connection asynchronously with the specified code and reason.
/// <paramref name="code"/> and <paramref name="reason"/>.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para> /// <para>
/// This method does not wait for the close to be complete. /// This method does not wait for the close to be complete.
/// </para> /// </para>
/// <para> /// <para>
/// And this method does nothing if the current state of /// This method does nothing if the current state of the connection is
/// the connection is Closing or Closed. /// Closing or Closed.
/// </para> /// </para>
/// </remarks> /// </remarks>
/// <param name="code"> /// <param name="code">
/// <para> /// <para>
/// A <see cref="ushort"/> that represents the status code /// A <see cref="ushort"/> that represents the status code indicating
/// indicating the reason for the close. /// the reason for the close.
/// </para> /// </para>
/// <para> /// <para>
/// The status codes are defined in /// The status codes are defined in
@ -3048,8 +3047,7 @@ namespace WebSocketSharp
/// -or- /// -or-
/// </para> /// </para>
/// <para> /// <para>
/// <paramref name="code"/> is 1005 (no status) and /// <paramref name="code"/> is 1005 (no status) and there is reason.
/// there is <paramref name="reason"/>.
/// </para> /// </para>
/// <para> /// <para>
/// -or- /// -or-