From 9908e5261b85b7d305160be15188329d83be8dbe Mon Sep 17 00:00:00 2001 From: sta Date: Fri, 9 Dec 2016 16:31:56 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/WebSocket.cs | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index 640f1d91..05f250be 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -2688,15 +2688,25 @@ namespace WebSocketSharp } /// - /// Sends a ping with the specified using the WebSocket connection. + /// Sends a ping with the specified using + /// the WebSocket connection. /// /// - /// true if the receives a pong to this ping in a time; - /// otherwise, false. + /// true if the ping has been sent and then a pong has been + /// received within a time; otherwise, false. /// /// /// A that represents the message to send. /// + /// + /// is . + /// + /// + /// could not be UTF8 encoded. + /// + /// + /// The size of is greater than 125 bytes. + /// public bool Ping (string message) { if (message == null)