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