diff --git a/websocket-sharp/Server/WebSocketSessionManager.cs b/websocket-sharp/Server/WebSocketSessionManager.cs index 7698a989..a6ba14e8 100644 --- a/websocket-sharp/Server/WebSocketSessionManager.cs +++ b/websocket-sharp/Server/WebSocketSessionManager.cs @@ -694,13 +694,13 @@ namespace WebSocketSharp.Server /// Sends a text to the client on the session /// with the specified . /// - /// - /// A that represents the ID of the session to find. - /// /// /// A that represents the text data to send. /// - public void SendTo (string id, string data) + /// + /// A that represents the ID of the session to find. + /// + public void SendTo (string data, string id) { IWebSocketSession session; if (TryGetSession (id, out session))