[Modify] Edit it

This commit is contained in:
sta 2020-08-19 21:18:21 +09:00
parent c8de370195
commit 1550bfd86d

View File

@ -173,20 +173,21 @@ namespace WebSocketSharp.Net
/// <summary> /// <summary>
/// Returns a value indicating whether the collection contains the specified /// Returns a value indicating whether the collection contains the specified
/// <paramref name="uriPrefix"/>. /// URI prefix.
/// </summary> /// </summary>
/// <returns> /// <returns>
/// <c>true</c> if the collection contains <paramref name="uriPrefix"/>; /// <c>true</c> if the collection contains the URI prefix; otherwise,
/// otherwise, <c>false</c>. /// <c>false</c>.
/// </returns> /// </returns>
/// <param name="uriPrefix"> /// <param name="uriPrefix">
/// A <see cref="string"/> that represents the URI prefix to test. /// A <see cref="string"/> that specifies the URI prefix to test.
/// </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 Contains (string uriPrefix) public bool Contains (string uriPrefix)
{ {