diff --git a/websocket-sharp/Server/WebSocketSessionManager.cs b/websocket-sharp/Server/WebSocketSessionManager.cs index 75744d5a..a7328a3b 100644 --- a/websocket-sharp/Server/WebSocketSessionManager.cs +++ b/websocket-sharp/Server/WebSocketSessionManager.cs @@ -967,15 +967,39 @@ namespace WebSocketSharp.Server } /// - /// Sends binary to the client on the session with - /// the specified . + /// Sends to the client using the specified session. /// /// /// An array of that represents the binary data to send. /// /// - /// A that represents the ID of the session to find. + /// A that represents the ID of the session. /// + /// + /// + /// is . + /// + /// + /// -or- + /// + /// + /// is . + /// + /// + /// + /// + /// is an empty string. + /// + /// + /// -or- + /// + /// + /// The session could not be found. + /// + /// + /// + /// The current state of the WebSocket connection is not Open. + /// public void SendTo (byte[] data, string id) { IWebSocketSession session;