[Modify] Edit it
This commit is contained in:
parent
abf84b401a
commit
2fd8928eb9
@ -2772,6 +2772,12 @@ namespace WebSocketSharp
|
|||||||
/// the send is complete. A <see cref="bool"/> passed to this delegate will be
|
/// 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.
|
/// <c>true</c> if the send has done with no error.
|
||||||
/// </param>
|
/// </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)
|
public void SendAsync (byte[] data, Action<bool> completed)
|
||||||
{
|
{
|
||||||
if (_readyState != WebSocketState.Open) {
|
if (_readyState != WebSocketState.Open) {
|
||||||
|
Loading…
Reference in New Issue
Block a user