[Modify] Edit it

This commit is contained in:
sta 2018-12-03 20:48:29 +09:00
parent 0afef43f8a
commit 5631e78804

View File

@ -1234,24 +1234,26 @@ namespace WebSocketSharp.Server
}
/// <summary>
/// Adds a WebSocket service with the specified behavior and
/// <paramref name="path"/>.
/// Adds a WebSocket service with the specified behavior and path.
/// </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">
/// <para>
/// 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>
/// <typeparam name="TBehaviorWithNew">
/// <para>
/// The type of the behavior for the service.
/// </para>
/// <para>
/// It must inherit the <see cref="WebSocketBehavior"/> class and
/// must have a public parameterless constructor.
/// It must inherit the <see cref="WebSocketBehavior"/> class.
/// </para>
/// <para>
/// And also, it must have a public parameterless constructor.
/// </para>
/// </typeparam>
/// <exception cref="ArgumentNullException">