[Modify] Edit it

This commit is contained in:
sta 2017-08-14 15:52:48 +09:00
parent 4cc65c4ec5
commit 1f8d3e6735

View File

@ -3183,15 +3183,17 @@ namespace WebSocketSharp
} }
/// <summary> /// <summary>
/// Sends the specified <paramref name="length"/> of data from /// Sends the data from <paramref name="stream"/> using the WebSocket
/// the specified <paramref name="stream"/> using the WebSocket
/// connection. /// connection.
/// </summary> /// </summary>
/// <remarks>
/// The data is sent as the binary data.
/// </remarks>
/// <param name="stream"> /// <param name="stream">
/// A <see cref="Stream"/> from which reads 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 read and 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 connection is not Open. /// The current state of the connection is not Open.