[Modify] Edit it

This commit is contained in:
sta 2017-07-04 16:23:43 +09:00
parent e4375bd18a
commit ae2df0619a

View File

@ -172,18 +172,19 @@ namespace WebSocketSharp.Server
/// the specified <paramref name="port"/> and <paramref name="secure"/>. /// the specified <paramref name="port"/> and <paramref name="secure"/>.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// An instance initialized by this constructor listens for the incoming requests on /// The new instance listens for incoming requests on
/// <paramref name="port"/>. /// <see cref="System.Net.IPAddress.Any"/> and <paramref name="port"/>.
/// </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 number of the port
/// on which to listen.
/// </param> /// </param>
/// <param name="secure"> /// <param name="secure">
/// A <see cref="bool"/> that indicates providing a secure connection or not. /// A <see cref="bool"/>: <c>true</c> if the new instance provides
/// (<c>true</c> indicates providing a secure connection.) /// secure connections; otherwise, <c>false</c>.
/// </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 HttpServer (int port, bool secure) public HttpServer (int port, bool secure)
{ {