[Modify] Edit it

This commit is contained in:
sta 2017-07-21 16:43:19 +09:00
parent 13f7da800e
commit 85577bdb1b

View File

@ -1158,16 +1158,20 @@ namespace WebSocketSharp.Server
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <paramref name="path"/> is converted to a URL-decoded string and /// <paramref name="path"/> is converted to a URL-decoded string and
/// / is trimmed from the end of the converted string if any. /// '/' is trimmed from the end of the converted string if any.
/// </remarks> /// </remarks>
/// <param name="path"> /// <param name="path">
/// A <see cref="string"/> that represents an absolute path to /// A <see cref="string"/> that represents an absolute path to
/// the service to add. /// the service to add.
/// </param> /// </param>
/// <typeparam name="TBehaviorWithNew"> /// <typeparam name="TBehaviorWithNew">
/// The type of the behavior for the service. It must inherit /// <para>
/// the <see cref="WebSocketBehavior"/> class and it must have /// The type of the behavior for the service.
/// a public parameterless constructor. /// </para>
/// <para>
/// It must inherit the <see cref="WebSocketBehavior"/> class and
/// have a public parameterless constructor.
/// </para>
/// </typeparam> /// </typeparam>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="path"/> is <see langword="null"/>. /// <paramref name="path"/> is <see langword="null"/>.