[Modify] Edit it
This commit is contained in:
parent
3c792717e8
commit
4cd79be0b7
@ -3369,8 +3369,8 @@ namespace WebSocketSharp
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Sends the specified <paramref name="data"/> asynchronously using
|
/// Sends <paramref name="data"/> asynchronously using the WebSocket
|
||||||
/// the WebSocket connection.
|
/// connection.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// This method does not wait for the send to be complete.
|
/// This method does not wait for the send to be complete.
|
||||||
@ -3379,9 +3379,17 @@ namespace WebSocketSharp
|
|||||||
/// A <see cref="string"/> that represents the text data to send.
|
/// A <see cref="string"/> that represents the text data to send.
|
||||||
/// </param>
|
/// </param>
|
||||||
/// <param name="completed">
|
/// <param name="completed">
|
||||||
/// An <c>Action<bool></c> delegate that invokes the method called when
|
/// <para>
|
||||||
/// the send is complete. A <see cref="bool"/> passed to this delegate will be
|
/// An <c>Action<bool></c> delegate or <see langword="null"/>
|
||||||
/// <c>true</c> if the send has done with no error.
|
/// if not needed.
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// The delegate invokes the method called when the send is complete.
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// <c>true</c> is passed to the method if the send has done with
|
||||||
|
/// no error; otherwise, <c>false</c>.
|
||||||
|
/// </para>
|
||||||
/// </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.
|
||||||
|
Loading…
Reference in New Issue
Block a user