[Modify] Edit it

This commit is contained in:
sta 2016-08-28 16:22:03 +09:00
parent 4dc757dc5c
commit 69a1843d89

View File

@ -2435,20 +2435,15 @@ namespace WebSocketSharp
} }
/// <summary> /// <summary>
/// Closes the WebSocket connection asynchronously with the specified <see cref="ushort"/>, /// Closes the WebSocket connection asynchronously with the specified
/// and releases all associated resources. /// <paramref name="code"/>, and releases all associated resources.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para> /// This method does not wait for the close to be complete.
/// This method doesn't wait for the close to be complete.
/// </para>
/// <para>
/// This method emits a <see cref="OnError"/> event if <paramref name="code"/> isn't in
/// the allowable range of the close status code.
/// </para>
/// </remarks> /// </remarks>
/// <param name="code"> /// <param name="code">
/// A <see cref="ushort"/> that represents the status code indicating the reason for the close. /// A <see cref="ushort"/> that represents the status code indicating
/// the reason for the close.
/// </param> /// </param>
public void CloseAsync (ushort code) public void CloseAsync (ushort code)
{ {