[Modify] Edit it

This commit is contained in:
sta 2016-11-03 17:37:02 +09:00
parent 483372aa77
commit fe17a3bc04

View File

@ -923,17 +923,18 @@ namespace WebSocketSharp.Server
}
/// <summary>
/// Removes the WebSocket service with the specified <paramref name="path"/>.
/// Removes a WebSocket service with the specified <paramref name="path"/>.
/// </summary>
/// <remarks>
/// This method converts <paramref name="path"/> to URL-decoded string,
/// This method converts <paramref name="path"/> to a URL-decoded string,
/// and removes <c>'/'</c> from tail end of <paramref name="path"/>.
/// </remarks>
/// <returns>
/// <c>true</c> if the service is successfully found and removed; otherwise, <c>false</c>.
/// <c>true</c> if the service is successfully found and removed;
/// otherwise, <c>false</c>.
/// </returns>
/// <param name="path">
/// A <see cref="string"/> that represents the absolute path to the service to find.
/// A <see cref="string"/> that represents an absolute path to the service.
/// </param>
public bool RemoveWebSocketService (string path)
{