[Modify] Edit it

This commit is contained in:
sta 2021-04-01 20:10:38 +09:00
parent b1fb4a171f
commit d8e58aae80

View File

@ -643,19 +643,26 @@ namespace WebSocketSharp.Net
/// Begins getting an incoming request asynchronously. /// Begins getting an incoming request asynchronously.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// This asynchronous operation must be completed by calling the <c>EndGetContext</c> method. /// <para>
/// Typically, the method is invoked by the <paramref name="callback"/> delegate. /// This asynchronous operation must be completed by calling
/// the EndGetContext method.
/// </para>
/// <para>
/// Typically, the EndGetContext method is called by
/// <paramref name="callback"/>.
/// </para>
/// </remarks> /// </remarks>
/// <returns> /// <returns>
/// An <see cref="IAsyncResult"/> that represents the status of the asynchronous operation. /// An <see cref="IAsyncResult"/> that represents the status of
/// the asynchronous operation.
/// </returns> /// </returns>
/// <param name="callback"> /// <param name="callback">
/// An <see cref="AsyncCallback"/> delegate that references the method to invoke when /// An <see cref="AsyncCallback"/> delegate that references the method to
/// the asynchronous operation completes. /// invoke when the asynchronous operation completes.
/// </param> /// </param>
/// <param name="state"> /// <param name="state">
/// An <see cref="object"/> that represents a user defined object to pass to /// An <see cref="object"/> that represents a user defined object to
/// the <paramref name="callback"/> delegate. /// pass to <paramref name="callback"/>.
/// </param> /// </param>
/// <exception cref="InvalidOperationException"> /// <exception cref="InvalidOperationException">
/// <para> /// <para>
@ -665,7 +672,7 @@ namespace WebSocketSharp.Net
/// -or- /// -or-
/// </para> /// </para>
/// <para> /// <para>
/// This listener hasn't been started, or is currently stopped. /// This listener has not been started or is currently stopped.
/// </para> /// </para>
/// </exception> /// </exception>
/// <exception cref="ObjectDisposedException"> /// <exception cref="ObjectDisposedException">