[Modify] Edit it

This commit is contained in:
sta 2016-11-24 16:10:04 +09:00
parent e65bd0aaee
commit ecabc73eb0

View File

@ -2874,22 +2874,23 @@ namespace WebSocketSharp
} }
/// <summary> /// <summary>
/// Sends binary data from the specified <see cref="Stream"/> asynchronously using /// Sends the specified <paramref name="length"/> of data from
/// the specified <paramref name="stream"/> asynchronously using
/// the WebSocket connection. /// the WebSocket connection.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// This method doesn't wait for the send to be complete. /// This method does not wait for the send to be complete.
/// </remarks> /// </remarks>
/// <param name="stream"> /// <param name="stream">
/// A <see cref="Stream"/> from which contains the binary data to send. /// A <see cref="Stream"/> from which reads the binary data to send.
/// </param> /// </param>
/// <param name="length"> /// <param name="length">
/// An <see cref="int"/> that represents the number of bytes to send. /// An <see cref="int"/> that represents the number of bytes to send.
/// </param> /// </param>
/// <param name="completed"> /// <param name="completed">
/// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when /// An <c>Action&lt;bool&gt;</c> delegate that invokes the method called when
/// the send is complete. A <see cref="bool"/> passed to this delegate is <c>true</c> /// the send is complete. A <see cref="bool"/> passed to this delegate will be
/// if the send is complete successfully. /// <c>true</c> if the send has done with no error.
/// </param> /// </param>
public void SendAsync (Stream stream, int length, Action<bool> completed) public void SendAsync (Stream stream, int length, Action<bool> completed)
{ {