[Modify] Edit it

This commit is contained in:
sta 2017-01-30 15:49:39 +09:00
parent f764f1fb3c
commit 5bbaf75599

View File

@ -106,23 +106,23 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="WebSocketServer"/> class with /// Initializes a new instance of the <see cref="WebSocketServer"/> class
/// the specified <paramref name="port"/>. /// with the specified <paramref name="port"/>.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para> /// <para>
/// An instance initialized by this constructor listens for the incoming connection requests /// The new instance listens for the incoming handshake requests on
/// on <paramref name="port"/>. /// <paramref name="port"/>.
/// </para> /// </para>
/// <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> /// </para>
/// </remarks> /// </remarks>
/// <param name="port"> /// <param name="port">
/// An <see cref="int"/> that represents the port number on which to listen. /// An <see cref="int"/> that represents the port number on which to listen.
/// </param> /// </param>
/// <exception cref="ArgumentOutOfRangeException"> /// <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> /// </exception>
public WebSocketServer (int port) public WebSocketServer (int port)
: this (port, port == 443) : this (port, port == 443)