Fix a few

This commit is contained in:
sta 2014-01-30 17:19:11 +09:00
parent 81993cbd97
commit fa857e406c

View File

@ -1819,13 +1819,13 @@ namespace WebSocketSharp
/// Sends a Ping with the specified <paramref name="message"/> using the /// Sends a Ping with the specified <paramref name="message"/> using the
/// WebSocket connection. /// WebSocket connection.
/// </summary> /// </summary>
/// <param name="message">
/// A <see cref="string"/> that represents the message to send.
/// </param>
/// <returns> /// <returns>
/// <c>true</c> if the <see cref="WebSocket"/> instance receives the Pong to /// <c>true</c> if the <see cref="WebSocket"/> instance receives the Pong to
/// this Ping from the server in a time; otherwise, <c>false</c>. /// this Ping from the server in a time; otherwise, <c>false</c>.
/// </returns> /// </returns>
/// <param name="message">
/// A <see cref="string"/> that represents the message to send.
/// </param>
public bool Ping (string message) public bool Ping (string message)
{ {
if (message == null || message.Length == 0) if (message == null || message.Length == 0)