From 7d168515d103e1ba00d775e7f98ffb33d20cd276 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 22 Apr 2015 14:56:52 +0900 Subject: [PATCH] Replaced the PingTo (string id, string message) method with the PingTo (string message, 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 b1532dc2..df305ded 100644 --- a/websocket-sharp/Server/WebSocketSessionManager.cs +++ b/websocket-sharp/Server/WebSocketSessionManager.cs @@ -661,13 +661,13 @@ namespace WebSocketSharp.Server /// true if the manager receives a Pong from the client in a time; /// otherwise, false. /// - /// - /// A that represents the ID of the session to find. - /// /// /// A that represents the message to send. /// - public bool PingTo (string id, string message) + /// + /// A that represents the ID of the session to find. + /// + public bool PingTo (string message, string id) { IWebSocketSession session; return TryGetSession (id, out session) && session.Context.WebSocket.Ping (message);