[Modify] Edit it

This commit is contained in:
sta 2017-07-04 16:30:34 +09:00
parent ae2df0619a
commit ceac08866e

View File

@ -96,18 +96,19 @@ namespace WebSocketSharp.Server
/// </summary>
/// <remarks>
/// <para>
/// An instance initialized by this constructor listens for the incoming requests on
/// <paramref name="port"/>.
/// The new instance listens for incoming requests on
/// <see cref="System.Net.IPAddress.Any"/> and <paramref name="port"/>.
/// </para>
/// <para>
/// If <paramref name="port"/> is 443, that instance provides a secure connection.
/// It provides secure connections if <paramref name="port"/> is 443.
/// </para>
/// </remarks>
/// <param name="port">
/// An <see cref="int"/> that represents the port number on which to listen.
/// An <see cref="int"/> that represents the number of the port
/// on which to listen.
/// </param>
/// <exception cref="ArgumentOutOfRangeException">
/// <paramref name="port"/> isn't between 1 and 65535 inclusive.
/// <paramref name="port"/> is less than 1 or greater than 65535.
/// </exception>
public HttpServer (int port)
: this (port, port == 443)