[Modify] Edit it

This commit is contained in:
sta 2018-07-31 19:52:34 +09:00
parent 7af5bf71c6
commit f41df03eb6

View File

@ -1494,14 +1494,10 @@ 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>
/// A <see cref="ushort"/> that represents the status code /// A <see cref="ushort"/> that represents the status code indicating
/// indicating the reason for the WebSocket connection close. /// the reason for the WebSocket connection close.
/// </para> /// </para>
/// <para> /// <para>
/// The status codes are defined in /// The status codes are defined in
@ -1511,8 +1507,8 @@ namespace WebSocketSharp.Server
/// </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.
@ -1537,8 +1533,7 @@ namespace WebSocketSharp.Server
/// -or- /// -or-
/// </para> /// </para>
/// <para> /// <para>
/// <paramref name="code"/> is 1005 (no status) and /// <paramref name="code"/> is 1005 (no status) and there is reason.
/// there is <paramref name="reason"/>.
/// </para> /// </para>
/// <para> /// <para>
/// -or- /// -or-