[Modify] Edit it

This commit is contained in:
sta 2018-11-26 22:35:49 +09:00
parent d2f065ab55
commit 02a3bb7c14

View File

@ -470,8 +470,8 @@ namespace WebSocketSharp.Server
#region Public Methods #region Public Methods
/// <summary> /// <summary>
/// Adds a WebSocket service with the specified behavior, /// Adds a WebSocket service with the specified behavior, path,
/// <paramref name="path"/>, and <paramref name="initializer"/>. /// and delegate.
/// </summary> /// </summary>
/// <param name="path"> /// <param name="path">
/// <para> /// <para>
@ -488,14 +488,20 @@ namespace WebSocketSharp.Server
/// <see langword="null"/> if not needed. /// <see langword="null"/> if not needed.
/// </para> /// </para>
/// <para> /// <para>
/// That delegate invokes the method called for initializing /// The delegate invokes the method called when initializing
/// a new session instance for the service. /// a new session instance for the service.
/// </para> /// </para>
/// </param> /// </param>
/// <typeparam name="TBehavior"> /// <typeparam name="TBehavior">
/// 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.
/// </para>
/// <para>
/// And also, it must 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"/>.