[Modify] Edit it

This commit is contained in:
sta 2020-08-16 22:04:29 +09:00
parent 41dd8b89d1
commit a4da7191e4

View File

@ -116,11 +116,16 @@ namespace WebSocketSharp.Net
#region Public Methods #region Public Methods
/// <summary> /// <summary>
/// Adds the specified <paramref name="uriPrefix"/> to the collection. /// Adds the specified URI prefix to the collection.
/// </summary> /// </summary>
/// <param name="uriPrefix"> /// <param name="uriPrefix">
/// A <see cref="string"/> that represents the URI prefix to add. The prefix must be /// <para>
/// a well-formed URI prefix with http or https scheme, and must end with a <c>'/'</c>. /// A <see cref="string"/> that specifies the URI prefix to add.
/// </para>
/// <para>
/// It must be a well-formed URI prefix with http or https scheme,
/// and must end with a '/'.
/// </para>
/// </param> /// </param>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="uriPrefix"/> is <see langword="null"/>. /// <paramref name="uriPrefix"/> is <see langword="null"/>.
@ -129,7 +134,8 @@ namespace WebSocketSharp.Net
/// <paramref name="uriPrefix"/> is invalid. /// <paramref name="uriPrefix"/> is invalid.
/// </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 void Add (string uriPrefix) public void Add (string uriPrefix)
{ {