From 8e1005b90ff7831dabbc3493cf832b84feac3322 Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 21 Apr 2015 15:17:20 +0900 Subject: [PATCH] Replaced the SendTo (string id, string data) method with the SendTo (string 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 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))