diff --git a/websocket-sharp/Server/WebSocketBehavior.cs b/websocket-sharp/Server/WebSocketBehavior.cs
index 74b5d3fa..2a053ffe 100644
--- a/websocket-sharp/Server/WebSocketBehavior.cs
+++ b/websocket-sharp/Server/WebSocketBehavior.cs
@@ -473,14 +473,33 @@ namespace WebSocketSharp.Server
}
///
- /// Sends the specified as binary data to the client on a session.
+ /// Sends the specified file to a client using the WebSocket connection.
///
- ///
- /// This method is available after the WebSocket connection has been established.
- ///
- ///
- /// A that represents the file to send.
+ ///
+ ///
+ /// A that specifies the file to send.
+ ///
+ ///
+ /// The file is sent as the binary data.
+ ///
///
+ ///
+ /// The current state of the connection is not Open.
+ ///
+ ///
+ /// is .
+ ///
+ ///
+ ///
+ /// The file does not exist.
+ ///
+ ///
+ /// -or-
+ ///
+ ///
+ /// The file could not be opened.
+ ///
+ ///
protected void Send (FileInfo fileInfo)
{
if (_websocket == null) {