From a45baed91ce131c229a078692bb3af66ac19ba36 Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 20 Apr 2015 17:12:28 +0900 Subject: [PATCH] Replaced the SendTo (string id, byte[] data) method with the SendTo (byte[] data, string id) method --- websocket-sharp/Server/WebSocketSessionManager.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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))