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);