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