[Modify] Edit it

This commit is contained in:
sta 2016-11-17 04:24:23 +09:00
parent 5a94a05bc7
commit b05a3098cf

View File

@ -2682,11 +2682,18 @@ namespace WebSocketSharp
} }
/// <summary> /// <summary>
/// Sends the specified <paramref name="file"/> as binary data using the WebSocket connection. /// Sends the specified <paramref name="file"/> as the binary data using
/// the WebSocket connection.
/// </summary> /// </summary>
/// <param name="file"> /// <param name="file">
/// A <see cref="FileInfo"/> that represents the file to send. /// A <see cref="FileInfo"/> that represents the file to send.
/// </param> /// </param>
/// <exception cref="ArgumentNullException">
/// <paramref name="file"/> is <see langword="null"/>.
/// </exception>
/// <exception cref="InvalidOperationException">
/// The current state of the connection is not Open.
/// </exception>
public void Send (FileInfo file) public void Send (FileInfo file)
{ {
if (file == null) if (file == null)