[Modify] Edit it

This commit is contained in:
sta 2021-11-22 21:19:23 +09:00
parent eed0410df3
commit 65f34f5307

View File

@ -1443,25 +1443,25 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Sends the data from <paramref name="stream"/> asynchronously to /// Sends the data from the specified stream instance asynchronously to
/// the client using the specified session. /// the client using the specified session.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// This method does not wait for the send to be complete.
/// </remarks>
/// <param name="stream">
/// <para>
/// A <see cref="Stream"/> instance from which to read the data to send.
/// </para>
/// <para> /// <para>
/// The data is sent as the binary data. /// The data is sent as the binary data.
/// </para> /// </para>
/// <para>
/// This method does not wait for the send to be complete.
/// </para>
/// </remarks>
/// <param name="stream">
/// A <see cref="Stream"/> instance from which to read the data to send.
/// </param> /// </param>
/// <param name="length"> /// <param name="length">
/// An <see cref="int"/> that specifies the number of bytes to send. /// An <see cref="int"/> that specifies the number of bytes to send.
/// </param> /// </param>
/// <param name="id"> /// <param name="id">
/// A <see cref="string"/> that represents the ID of the session. /// A <see cref="string"/> that specifies the ID of the session.
/// </param> /// </param>
/// <param name="completed"> /// <param name="completed">
/// <para> /// <para>