[Modify] Edit it

This commit is contained in:
sta 2018-05-14 19:45:19 +09:00
parent 7df9640514
commit 0d920d15ee

View File

@ -451,14 +451,17 @@ namespace WebSocketSharp.Server
}
/// <summary>
/// Sends binary <paramref name="data"/> to the client on a session.
/// Sends the specified data to a client using the WebSocket connection.
/// </summary>
/// <remarks>
/// This method is available after the WebSocket connection has been established.
/// </remarks>
/// <param name="data">
/// An array of <see cref="byte"/> that represents the binary data to send.
/// </param>
/// <exception cref="InvalidOperationException">
/// The current state of the connection is not Open.
/// </exception>
/// <exception cref="ArgumentNullException">
/// <paramref name="data"/> is <see langword="null"/>.
/// </exception>
protected void Send (byte[] data)
{
if (_websocket == null) {