[Modify] Edit it
This commit is contained in:
parent
b754c4b6ab
commit
55cf887b33
@ -657,15 +657,19 @@ 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 service.
|
/// every client in the WebSocket service.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// This method does not wait for the send to be complete.
|
/// <para>
|
||||||
|
/// The data is sent as the binary data.
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// 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 send.
|
/// An <see cref="int"/> that specifies the number of bytes to send.
|
||||||
@ -676,7 +680,7 @@ namespace WebSocketSharp.Server
|
|||||||
/// if not needed.
|
/// if not needed.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// <para>
|
/// <para>
|
||||||
/// That delegate invokes the method called when the send is complete.
|
/// The delegate invokes the method called when the send is complete.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
/// <exception cref="InvalidOperationException">
|
/// <exception cref="InvalidOperationException">
|
||||||
|
Loading…
Reference in New Issue
Block a user