[Modify] Edit it

This commit is contained in:
sta 2017-08-16 15:17:41 +09:00
parent 8e5d517458
commit f6ec443461

View File

@ -566,24 +566,22 @@ namespace WebSocketSharp.Server
}
/// <summary>
/// Sends the specified <paramref name="data"/> asynchronously to
/// every client in the WebSocket service.
/// Sends <paramref name="data"/> asynchronously to every client in
/// the WebSocket service.
/// </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">