[Modify] Edit it

This commit is contained in:
sta 2019-10-19 21:33:18 +09:00
parent 1f196b7bb4
commit d235650065

View File

@ -723,21 +723,21 @@ namespace WebSocketSharp.Net
} }
/// <summary> /// <summary>
/// Returns the response with the specified array of <see cref="byte"/> to the client and /// Returns the response with the specified entity body data to the client
/// releases the resources used by this <see cref="HttpListenerResponse"/> instance. /// and releases the resources used by this instance.
/// </summary> /// </summary>
/// <param name="responseEntity"> /// <param name="responseEntity">
/// An array of <see cref="byte"/> that contains the response entity body data. /// An array of <see cref="byte"/> that contains the entity body data.
/// </param> /// </param>
/// <param name="willBlock"> /// <param name="willBlock">
/// <c>true</c> if this method blocks execution while flushing the stream to the client; /// <c>true</c> if this method blocks execution while flushing the stream to
/// otherwise, <c>false</c>. /// the client; otherwise, <c>false</c>.
/// </param> /// </param>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="responseEntity"/> is <see langword="null"/>. /// <paramref name="responseEntity"/> is <see langword="null"/>.
/// </exception> /// </exception>
/// <exception cref="ObjectDisposedException"> /// <exception cref="ObjectDisposedException">
/// This object is closed. /// This instance is closed.
/// </exception> /// </exception>
public void Close (byte[] responseEntity, bool willBlock) public void Close (byte[] responseEntity, bool willBlock)
{ {