[Modify] Edit it

This commit is contained in:
sta 2016-11-22 16:30:55 +09:00
parent 922cd7e3b4
commit abf84b401a

View File

@ -2758,18 +2758,19 @@ namespace WebSocketSharp
} }
/// <summary> /// <summary>
/// Sends binary <paramref name="data"/> asynchronously using the WebSocket connection. /// Sends the specified <paramref name="data"/> asynchronously using
/// 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="data"> /// <param name="data">
/// An array of <see cref="byte"/> that represents the binary data to send. /// An array of <see cref="byte"/> that represents the binary data 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 (byte[] data, Action<bool> completed) public void SendAsync (byte[] data, Action<bool> completed)
{ {