[Modify] Edit it

This commit is contained in:
sta 2021-11-12 19:44:49 +09:00
parent 11141253f1
commit e01148acff

View File

@ -680,14 +680,14 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Sends <paramref name="data"/> asynchronously to every client in /// Sends the specified data asynchronously to every client in
/// the WebSocket service. /// the WebSocket service.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// This method does not wait for the send to be complete. /// This method does not wait for the send to be complete.
/// </remarks> /// </remarks>
/// <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>
/// <param name="completed"> /// <param name="completed">
/// <para> /// <para>
@ -699,7 +699,7 @@ namespace WebSocketSharp.Server
/// </para> /// </para>
/// </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"/>.