[Modify] Edit it

This commit is contained in:
sta 2017-08-14 16:08:59 +09:00
parent 8c12044023
commit 168a335266

View File

@ -487,12 +487,14 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Sends the specified <paramref name="length"/> of data from /// Sends the data from <paramref name="stream"/> to every client in
/// the specified <paramref name="stream"/> 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"/> from which to read the binary data to send. /// 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.