Browse Source

[Modify] Edit it

master
sta 2 months ago
parent
commit
8f3e421ba7
  1. 6
      websocket-sharp/WebSocket.cs

6
websocket-sharp/WebSocket.cs

@ -3524,13 +3524,13 @@ namespace WebSocketSharp
/// <param name="data"> /// <param name="data">
/// An array of <see cref="byte"/> that specifies the binary data to send. /// An array of <see cref="byte"/> that specifies the binary data to send.
/// </param> /// </param>
/// <exception cref="ArgumentNullException">
/// <paramref name="data"/> is <see langword="null"/>.
/// </exception>
/// <exception cref="InvalidOperationException"> /// <exception cref="InvalidOperationException">
/// The Send method is not available when the current state of /// The Send method is not available when the current state of
/// the interface is not Open. /// the interface is not Open.
/// </exception> /// </exception>
/// <exception cref="ArgumentNullException">
/// <paramref name="data"/> is <see langword="null"/>.
/// </exception>
public void Send (byte[] data) public void Send (byte[] data)
{ {
if (_readyState != WebSocketState.Open) { if (_readyState != WebSocketState.Open) {

Loading…
Cancel
Save