[Modify] Edit it

This commit is contained in:
sta 2017-04-01 16:01:50 +09:00
parent f37c761971
commit bd1d1fd922

View File

@ -528,11 +528,19 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Sends binary <paramref name="data"/> to every client in the WebSocket services. /// Sends the specified <paramref name="data"/> to
/// every client in the WebSocket services.
/// </summary> /// </summary>
/// <param name="data"> /// <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>
/// <exception cref="InvalidOperationException">
/// The current state of the manager is not Start.
/// </exception>
/// <exception cref="ArgumentNullException">
/// <paramref name="data"/> is <see langword="null"/>.
/// </exception>
public void Broadcast (byte[] data) public void Broadcast (byte[] data)
{ {
if (_state != ServerState.Start) { if (_state != ServerState.Start) {