[Modify] Edit it

This commit is contained in:
sta 2021-11-10 19:42:43 +09:00
parent 4e1a19b267
commit d6b75d5642

View File

@ -528,13 +528,13 @@ namespace WebSocketSharp.Server
#region Public Methods #region Public Methods
/// <summary> /// <summary>
/// Sends <paramref name="data"/> to every client in the WebSocket service. /// Sends the specified data to every client in the WebSocket service.
/// </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 specifies the binary data to send.
/// </param> /// </param>
/// <exception cref="InvalidOperationException"> /// <exception cref="InvalidOperationException">
/// The current state of the manager is not Start. /// The current state of the service is not Start.
/// </exception> /// </exception>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="data"/> is <see langword="null"/>. /// <paramref name="data"/> is <see langword="null"/>.