[Modify] Edit it

This commit is contained in:
sta 2017-07-05 16:13:27 +09:00
parent 589c88ff01
commit 821139a569

View File

@ -248,27 +248,29 @@ namespace WebSocketSharp.Server
/// and <paramref name="secure"/>.
/// </summary>
/// <remarks>
/// An instance initialized by this constructor listens for the incoming requests on
/// The new instance listens for incoming requests on
/// <paramref name="address"/> and <paramref name="port"/>.
/// </remarks>
/// <param name="address">
/// A <see cref="System.Net.IPAddress"/> that represents the local IP address of the server.
/// A <see cref="System.Net.IPAddress"/> that represents
/// the local IP address on which to listen.
/// </param>
/// <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 name="secure">
/// A <see cref="bool"/> that indicates providing a secure connection or not.
/// (<c>true</c> indicates providing a secure connection.)
/// A <see cref="bool"/>: <c>true</c> if the new instance provides
/// secure connections; otherwise, <c>false</c>.
/// </param>
/// <exception cref="ArgumentNullException">
/// <paramref name="address"/> is <see langword="null"/>.
/// </exception>
/// <exception cref="ArgumentException">
/// <paramref name="address"/> isn't a local IP address.
/// <paramref name="address"/> is not a local IP address.
/// </exception>
/// <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 (System.Net.IPAddress address, int port, bool secure)
{