[Modify] Edit it

This commit is contained in:
sta 2017-08-17 15:45:35 +09:00
parent 41811a9e40
commit 9652eba005

View File

@ -571,24 +571,22 @@ namespace WebSocketSharp.Server
}
/// <summary>
/// Sends the specified <paramref name="data"/> asynchronously to
/// every client in the WebSocket services.
/// Sends <paramref name="data"/> asynchronously to every client in
/// the WebSocket services.
/// </summary>
/// <remarks>
/// This method does not wait for the send to be complete.
/// </remarks>
/// <param name="data">
/// An array of <see cref="byte"/> that represents
/// the binary data to send.
/// An array of <see cref="byte"/> that represents the binary data to send.
/// </param>
/// <param name="completed">
/// <para>
/// An <see cref="Action"/> delegate or
/// <see langword="null"/> if not needed.
/// An <see cref="Action"/> delegate or <see langword="null"/>
/// if not needed.
/// </para>
/// <para>
/// That delegate invokes the method called when
/// the send is complete.
/// The delegate invokes the method called when the send is complete.
/// </para>
/// </param>
/// <exception cref="InvalidOperationException">