[Modify] Edit it
This commit is contained in:
parent
6043ce7325
commit
0cdbc70bf5
@ -2693,11 +2693,10 @@ namespace WebSocketSharp
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Sends the specified <paramref name="fileInfo"/> as the binary data using
|
/// Sends the specified file as the binary data using the WebSocket connection.
|
||||||
/// the WebSocket connection.
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="fileInfo">
|
/// <param name="fileInfo">
|
||||||
/// A <see cref="FileInfo"/> that represents the file to send.
|
/// A <see cref="FileInfo"/> that specifies the file to send.
|
||||||
/// </param>
|
/// </param>
|
||||||
/// <exception cref="InvalidOperationException">
|
/// <exception cref="InvalidOperationException">
|
||||||
/// The current state of the connection is not Open.
|
/// The current state of the connection is not Open.
|
||||||
@ -2706,7 +2705,15 @@ namespace WebSocketSharp
|
|||||||
/// <paramref name="fileInfo"/> is <see langword="null"/>.
|
/// <paramref name="fileInfo"/> is <see langword="null"/>.
|
||||||
/// </exception>
|
/// </exception>
|
||||||
/// <exception cref="ArgumentException">
|
/// <exception cref="ArgumentException">
|
||||||
/// <paramref name="fileInfo"/> cannot be opened to read.
|
/// <para>
|
||||||
|
/// The file does not exist.
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// -or-
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// The file could not be opened.
|
||||||
|
/// </para>
|
||||||
/// </exception>
|
/// </exception>
|
||||||
public void Send (FileInfo fileInfo)
|
public void Send (FileInfo fileInfo)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user