[Modify] Edit it

This commit is contained in:
sta 2018-08-02 22:00:40 +09:00
parent a875f7a883
commit 2c72cc5658

View File

@ -1579,23 +1579,19 @@ namespace WebSocketSharp.Server
/// <summary> /// <summary>
/// Stops receiving incoming requests and closes each connection. /// Stops receiving incoming requests and closes each connection.
/// </summary> /// </summary>
/// <remarks>
/// This method does nothing if the server is not started,
/// it is shutting down, or it has already stopped.
/// </remarks>
/// <param name="code"> /// <param name="code">
/// <para> /// <para>
/// One of the <see cref="CloseStatusCode"/> enum values. /// One of the <see cref="CloseStatusCode"/> enum values.
/// </para> /// </para>
/// <para> /// <para>
/// It represents the status code indicating the reason for /// It represents the status code indicating the reason for the WebSocket
/// the WebSocket connection close. /// connection close.
/// </para> /// </para>
/// </param> /// </param>
/// <param name="reason"> /// <param name="reason">
/// <para> /// <para>
/// A <see cref="string"/> that represents the reason for /// A <see cref="string"/> that represents the reason for the WebSocket
/// the WebSocket connection close. /// connection close.
/// </para> /// </para>
/// <para> /// <para>
/// The size must be 123 bytes or less in UTF-8. /// The size must be 123 bytes or less in UTF-8.
@ -1614,8 +1610,7 @@ namespace WebSocketSharp.Server
/// </para> /// </para>
/// <para> /// <para>
/// <paramref name="code"/> is /// <paramref name="code"/> is
/// <see cref="CloseStatusCode.NoStatus"/> and /// <see cref="CloseStatusCode.NoStatus"/> and there is reason.
/// there is <paramref name="reason"/>.
/// </para> /// </para>
/// <para> /// <para>
/// -or- /// -or-