diff --git a/websocket-sharp/Server/WebSocketBehavior.cs b/websocket-sharp/Server/WebSocketBehavior.cs
index 7a4624a0..0298000c 100644
--- a/websocket-sharp/Server/WebSocketBehavior.cs
+++ b/websocket-sharp/Server/WebSocketBehavior.cs
@@ -451,14 +451,17 @@ namespace WebSocketSharp.Server
     }
 
     /// 
-    /// Sends binary  to the client on a session.
+    /// Sends the specified data to a client using the WebSocket connection.
     /// 
-    /// 
-    /// This method is available after the WebSocket connection has been established.
-    /// 
     /// 
     /// An array of  that represents the binary data to send.
     /// 
+    /// 
+    /// The current state of the connection is not Open.
+    /// 
+    /// 
+    ///  is .
+    /// 
     protected void Send (byte[] data)
     {
       if (_websocket == null) {