[Modify] Edit it

This commit is contained in:
sta 2021-03-30 21:55:46 +09:00
parent 7fa4cc4f0c
commit 4e5c5f2f66

View File

@ -699,22 +699,24 @@ namespace WebSocketSharp.Net
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// This method completes an asynchronous operation started by calling /// This method completes an asynchronous operation started by calling
/// the <c>BeginGetContext</c> method. /// the BeginGetContext method.
/// </remarks> /// </remarks>
/// <returns> /// <returns>
/// A <see cref="HttpListenerContext"/> that represents a request. /// A <see cref="HttpListenerContext"/> that represents a request.
/// </returns> /// </returns>
/// <param name="asyncResult"> /// <param name="asyncResult">
/// An <see cref="IAsyncResult"/> obtained by calling the <c>BeginGetContext</c> method. /// An <see cref="IAsyncResult"/> instance obtained by calling
/// the BeginGetContext method.
/// </param> /// </param>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="asyncResult"/> is <see langword="null"/>. /// <paramref name="asyncResult"/> is <see langword="null"/>.
/// </exception> /// </exception>
/// <exception cref="ArgumentException"> /// <exception cref="ArgumentException">
/// <paramref name="asyncResult"/> wasn't obtained by calling the <c>BeginGetContext</c> method. /// <paramref name="asyncResult"/> was not obtained by calling
/// the BeginGetContext method.
/// </exception> /// </exception>
/// <exception cref="InvalidOperationException"> /// <exception cref="InvalidOperationException">
/// This method was already called for the specified <paramref name="asyncResult"/>. /// This method was already called for <paramref name="asyncResult"/>.
/// </exception> /// </exception>
/// <exception cref="ObjectDisposedException"> /// <exception cref="ObjectDisposedException">
/// This listener has been closed. /// This listener has been closed.