From 0789794b2af4595da51440a76c8b1c2ad2d2e887 Mon Sep 17 00:00:00 2001 From: sta Date: Fri, 25 Nov 2016 17:00:12 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/WebSocket.cs | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index 249c3d54..52be77cd 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -2802,14 +2802,14 @@ namespace WebSocketSharp } /// - /// Sends the specified as the binary data - /// asynchronously using the WebSocket connection. + /// Sends the specified file as the binary data asynchronously using + /// the WebSocket connection. /// /// /// This method does not wait for the send to be complete. /// /// - /// A that represents the file to send. + /// A that specifies a file to send. /// /// /// An Action<bool> delegate that invokes the method called when @@ -2823,7 +2823,15 @@ namespace WebSocketSharp /// is . /// /// - /// cannot be opened to read. + /// + /// The file does not exist. + /// + /// + /// -or- + /// + /// + /// The file could not be opened. + /// /// public void SendAsync (FileInfo fileInfo, Action completed) {