[Modify] Edit it

This commit is contained in:
sta 2018-11-29 20:38:01 +09:00
parent 6d1eea5c4e
commit e72e68502f

View File

@ -1133,24 +1133,26 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Adds a WebSocket service with the specified behavior and /// Adds a WebSocket service with the specified behavior and path.
/// <paramref name="path"/>.
/// </summary> /// </summary>
/// <remarks>
/// <paramref name="path"/> is converted to a URL-decoded string and
/// '/' is trimmed from the end of the converted string if any.
/// </remarks>
/// <param name="path"> /// <param name="path">
/// A <see cref="string"/> that represents an absolute path to /// <para>
/// the service to add. /// A <see cref="string"/> that represents an absolute path to
/// the service to add.
/// </para>
/// <para>
/// / is trimmed from the end of the string if present.
/// </para>
/// </param> /// </param>
/// <typeparam name="TBehaviorWithNew"> /// <typeparam name="TBehaviorWithNew">
/// <para> /// <para>
/// The type of the behavior for the service. /// The type of the behavior for the service.
/// </para> /// </para>
/// <para> /// <para>
/// It must inherit the <see cref="WebSocketBehavior"/> class and /// It must inherit the <see cref="WebSocketBehavior"/> class.
/// have a public parameterless constructor. /// </para>
/// <para>
/// And also, it must have a public parameterless constructor.
/// </para> /// </para>
/// </typeparam> /// </typeparam>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">