[Modify] Edit it
This commit is contained in:
parent
5631e78804
commit
80d70f8a0f
@ -1290,16 +1290,17 @@ namespace WebSocketSharp.Server
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <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>
|
||||||
/// <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">
|
||||||
|
/// <para>
|
||||||
/// 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.
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// / is trimmed from the end of the string if present.
|
||||||
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
/// <param name="initializer">
|
/// <param name="initializer">
|
||||||
/// <para>
|
/// <para>
|
||||||
@ -1307,7 +1308,7 @@ 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>
|
||||||
@ -1316,8 +1317,10 @@ namespace WebSocketSharp.Server
|
|||||||
/// 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.
|
||||||
/// must 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">
|
||||||
|
Loading…
Reference in New Issue
Block a user