[Modify] Edit it

This commit is contained in:
sta 2018-11-21 20:08:36 +09:00
parent 7c13bba0c0
commit 2a3ad43b21

View File

@ -931,22 +931,21 @@ namespace WebSocketSharp.Server
/// Removes a WebSocket service with the specified <paramref name="path"/>. /// Removes a WebSocket service with the specified <paramref name="path"/>.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para>
/// <paramref name="path"/> is converted to a URL-decoded string and
/// / is trimmed from the end of the converted string if any.
/// </para>
/// <para>
/// The service is stopped with close status 1001 (going away) /// The service is stopped with close status 1001 (going away)
/// if it has already started. /// if it has already started.
/// </para>
/// </remarks> /// </remarks>
/// <returns> /// <returns>
/// <c>true</c> if the service is successfully found and removed; /// <c>true</c> if the service is successfully found and removed;
/// otherwise, <c>false</c>. /// otherwise, <c>false</c>.
/// </returns> /// </returns>
/// <param name="path"> /// <param name="path">
/// <para>
/// A <see cref="string"/> that represents an absolute path to /// A <see cref="string"/> that represents an absolute path to
/// the service to remove. /// the service to remove.
/// </para>
/// <para>
/// / is trimmed from the end of the string if present.
/// </para>
/// </param> /// </param>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="path"/> is <see langword="null"/>. /// <paramref name="path"/> is <see langword="null"/>.