[Modify] Edit it

This commit is contained in:
sta 2016-08-31 16:09:22 +09:00
parent 8c25d2533a
commit 675d42346d

View File

@ -2553,24 +2553,19 @@ namespace WebSocketSharp
/// <summary> /// <summary>
/// Closes the WebSocket connection asynchronously with the specified /// Closes the WebSocket connection asynchronously with the specified
/// <see cref="CloseStatusCode"/> and <see cref="string"/>, and releases /// <paramref name="code"/> and <paramref name="reason"/>, and releases
/// all associated resources. /// 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 the size of
/// <paramref name="reason"/> is greater than 123 bytes.
/// </para>
/// </remarks> /// </remarks>
/// <param name="code"> /// <param name="code">
/// One of the <see cref="CloseStatusCode"/> enum values, represents the status code indicating /// One of the <see cref="CloseStatusCode"/> enum values that represents
/// the reason for the close. /// the status code indicating the reason for the close.
/// </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 close.
/// The size must be 123 bytes or less.
/// </param> /// </param>
public void CloseAsync (CloseStatusCode code, string reason) public void CloseAsync (CloseStatusCode code, string reason)
{ {