[Modify] Edit it

This commit is contained in:
sta 2016-11-22 16:37:33 +09:00
parent abf84b401a
commit 2fd8928eb9

View File

@ -2772,6 +2772,12 @@ namespace WebSocketSharp
/// the send is complete. A <see cref="bool"/> passed to this delegate will be
/// <c>true</c> if the send has done with no error.
/// </param>
/// <exception cref="InvalidOperationException">
/// The current state of the connection is not Open.
/// </exception>
/// <exception cref="ArgumentNullException">
/// <paramref name="data"/> is <see langword="null"/>.
/// </exception>
public void SendAsync (byte[] data, Action<bool> completed)
{
if (_readyState != WebSocketState.Open) {