[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> /// <summary>
/// Sends the specified <paramref name="data"/> asynchronously to /// Sends <paramref name="data"/> asynchronously to every client in
/// every client in the WebSocket services. /// the WebSocket services.
/// </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 /// An array of <see cref="byte"/> that represents the binary data to send.
/// the binary data to send.
/// </param> /// </param>
/// <param name="completed"> /// <param name="completed">
/// <para> /// <para>
/// An <see cref="Action"/> delegate or /// An <see cref="Action"/> delegate or <see langword="null"/>
/// <see langword="null"/> if not needed. /// if not needed.
/// </para> /// </para>
/// <para> /// <para>
/// That delegate invokes the method called when /// The delegate invokes the method called when the send is complete.
/// the send is complete.
/// </para> /// </para>
/// </param> /// </param>
/// <exception cref="InvalidOperationException"> /// <exception cref="InvalidOperationException">