diff --git a/websocket-sharp/Server/WebSocketSessionManager.cs b/websocket-sharp/Server/WebSocketSessionManager.cs
index 41577490..6e7cde7d 100644
--- a/websocket-sharp/Server/WebSocketSessionManager.cs
+++ b/websocket-sharp/Server/WebSocketSessionManager.cs
@@ -1128,23 +1128,62 @@ namespace WebSocketSharp.Server
}
///
- /// Sends text asynchronously to the client on
- /// the session with the specified .
+ /// Sends asynchronously to the client using
+ /// the specified session.
///
///
- /// This method doesn't wait for the send to be complete.
+ /// This method does not wait for the send to be complete.
///
///
/// A that represents the text data to send.
///
///
- /// A that represents the ID of the session to find.
+ /// A that represents the ID of the session.
///
///
- /// An Action<bool> delegate that references the method(s) called when
- /// the send is complete. A passed to this delegate is true
- /// if the send is complete successfully.
+ ///
+ /// An Action<bool> delegate or
+ /// if not needed.
+ ///
+ ///
+ /// The delegate invokes the method called when the send is complete.
+ ///
+ ///
+ /// true is passed to the method if the send has done with
+ /// no error; otherwise, false.
+ ///
///
+ ///
+ ///
+ /// is .
+ ///
+ ///
+ /// -or-
+ ///
+ ///
+ /// is .
+ ///
+ ///
+ ///
+ ///
+ /// is an empty string.
+ ///
+ ///
+ /// -or-
+ ///
+ ///
+ /// The session could not be found.
+ ///
+ ///
+ /// -or-
+ ///
+ ///
+ /// could not be UTF-8-encoded.
+ ///
+ ///
+ ///
+ /// The current state of the WebSocket connection is not Open.
+ ///
public void SendToAsync (string data, string id, Action completed)
{
IWebSocketSession session;