[Modify] Edit it

This commit is contained in:
sta 2017-08-17 16:03:55 +09:00
parent 4ee86966cf
commit facc205ad9

View File

@ -664,28 +664,30 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Sends the specified <paramref name="length"/> of data from /// Sends the data from <paramref name="stream"/> asynchronously to
/// the specified <paramref name="stream"/> asynchronously to
/// every client in the WebSocket services. /// every client in the WebSocket services.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para>
/// The data is sent as the binary data.
/// </para>
/// <para>
/// This method does not wait for the send to be complete. /// This method does not wait for the send to be complete.
/// </para>
/// </remarks> /// </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 /// An <see cref="int"/> that specifies the number of bytes to send.
/// read and send.
/// </param> /// </param>
/// <param name="completed"> /// <param name="completed">
/// <para> /// <para>
/// An <see cref="Action"/> delegate or /// An <see cref="Action"/> delegate or <see langword="null"/>
/// <see langword="null"/> if not needed. /// if not needed.
/// </para> /// </para>
/// <para> /// <para>
/// That delegate invokes the method called when /// The delegate invokes the method called when the send is complete.
/// the send is complete.
/// </para> /// </para>
/// </param> /// </param>
/// <exception cref="InvalidOperationException"> /// <exception cref="InvalidOperationException">