[Modify] Edit it

This commit is contained in:
sta 2021-11-12 19:37:42 +09:00
parent 04cb8f4901
commit 708cd4e201

View File

@ -597,20 +597,22 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Sends the data from <paramref name="stream"/> to every client in /// Sends the data from the specified stream instance to every client in
/// the WebSocket service. /// the WebSocket service.
/// </summary> /// </summary>
/// <remarks>
/// The data is sent as the binary data.
/// </remarks>
/// <param name="stream"> /// <param name="stream">
/// A <see cref="Stream"/> instance from which to read the data to send. /// <para>
/// A <see cref="Stream"/> instance from which to read the data to send.
/// </para>
/// <para>
/// The data is sent as the binary data.
/// </para>
/// </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>
/// <exception cref="InvalidOperationException"> /// <exception cref="InvalidOperationException">
/// The current state of the manager is not Start. /// The current state of the service is not Start.
/// </exception> /// </exception>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="stream"/> is <see langword="null"/>. /// <paramref name="stream"/> is <see langword="null"/>.