Browse Source

[Modify] Edit it

pull/571/merge
sta 3 months ago
parent
commit
47e7293bef
  1. 6
      websocket-sharp/Server/WebSocketBehavior.cs

6
websocket-sharp/Server/WebSocketBehavior.cs

@ -1521,13 +1521,15 @@ namespace WebSocketSharp.Server
/// </exception> /// </exception>
/// <exception cref="InvalidOperationException"> /// <exception cref="InvalidOperationException">
/// <para> /// <para>
/// The session has not started yet.
/// The SendAsync method is not available when the session has not
/// started yet.
/// </para> /// </para>
/// <para> /// <para>
/// -or- /// -or-
/// </para> /// </para>
/// <para> /// <para>
/// The current state of the WebSocket interface is not Open.
/// The SendAsync method is not available when the current state of
/// the WebSocket interface is not Open.
/// </para> /// </para>
/// </exception> /// </exception>
protected void SendAsync (Stream stream, int length, Action<bool> completed) protected void SendAsync (Stream stream, int length, Action<bool> completed)

Loading…
Cancel
Save