[Modify] Edit it

This commit is contained in:
sta 2020-08-23 21:33:51 +09:00
parent f58b099f16
commit 793149bd44

View File

@ -254,20 +254,21 @@ namespace WebSocketSharp.Net
} }
/// <summary> /// <summary>
/// Removes the specified <paramref name="uriPrefix"/> from the collection. /// Removes the specified URI prefix from the collection.
/// </summary> /// </summary>
/// <returns> /// <returns>
/// <c>true</c> if <paramref name="uriPrefix"/> is successfully found and removed; /// <c>true</c> if the URI prefix is successfully found and removed;
/// otherwise, <c>false</c>. /// otherwise, <c>false</c>.
/// </returns> /// </returns>
/// <param name="uriPrefix"> /// <param name="uriPrefix">
/// A <see cref="string"/> that represents the URI prefix to remove. /// A <see cref="string"/> that specifies the URI prefix to remove.
/// </param> /// </param>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="uriPrefix"/> is <see langword="null"/>. /// <paramref name="uriPrefix"/> is <see langword="null"/>.
/// </exception> /// </exception>
/// <exception cref="ObjectDisposedException"> /// <exception cref="ObjectDisposedException">
/// The <see cref="HttpListener"/> associated with this collection is closed. /// The <see cref="HttpListener"/> instance associated with this collection
/// is closed.
/// </exception> /// </exception>
public bool Remove (string uriPrefix) public bool Remove (string uriPrefix)
{ {