[Modify] Edit it

This commit is contained in:
sta 2017-06-06 17:29:12 +09:00
parent 097987e3a0
commit 25ad8c6ec0

View File

@ -1164,18 +1164,47 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Removes the WebSocket service with the specified <paramref name="path"/>. /// Removes a WebSocket service with the specified <paramref name="path"/>.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// This method converts <paramref name="path"/> to URL-decoded string, /// <para>
/// and removes <c>'/'</c> from tail end of <paramref name="path"/>. /// <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)
/// if it has already started.
/// </para>
/// </remarks> /// </remarks>
/// <returns> /// <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> /// </returns>
/// <param name="path"> /// <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 to remove.
/// </param> /// </param>
/// <exception cref="ArgumentNullException">
/// <paramref name="path"/> is <see langword="null"/>.
/// </exception>
/// <exception cref="ArgumentException">
/// <para>
/// <paramref name="path"/> is an empty string.
/// </para>
/// <para>
/// -or-
/// </para>
/// <para>
/// <paramref name="path"/> is not an absolute path.
/// </para>
/// <para>
/// -or-
/// </para>
/// <para>
/// <paramref name="path"/> includes either or both
/// query and fragment components.
/// </para>
/// </exception>
public bool RemoveWebSocketService (string path) public bool RemoveWebSocketService (string path)
{ {
return _services.RemoveService (path); return _services.RemoveService (path);