[Modify] Edit it

This commit is contained in:
sta 2017-01-30 16:33:54 +09:00
parent 93fb098bb1
commit be392541a0

View File

@ -252,32 +252,33 @@ 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="address"/>, <paramref name="port"/>, /// with the specified <paramref name="address"/>, <paramref name="port"/>,
/// and <paramref name="secure"/>. /// and <paramref name="secure"/>.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// An instance initialized by this constructor listens for the incoming connection requests on /// The new instance listens for the incoming handshake requests on
/// <paramref name="address"/> and <paramref name="port"/>. /// <paramref name="address"/> and <paramref name="port"/>.
/// </remarks> /// </remarks>
/// <param name="address"> /// <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
/// for the server.
/// </param> /// </param>
/// <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>
/// <param name="secure"> /// <param name="secure">
/// A <see cref="bool"/> that indicates providing a secure connection or not. /// A <see cref="bool"/> that specifies providing secure connections or not.
/// (<c>true</c> indicates providing a secure connection.) /// <c>true</c> specifies providing secure connections.
/// </param> /// </param>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="address"/> is <see langword="null"/>. /// <paramref name="address"/> is <see langword="null"/>.
/// </exception> /// </exception>
/// <exception cref="ArgumentException"> /// <exception cref="ArgumentException">
/// <paramref name="address"/> isn't a local IP address. /// <paramref name="address"/> is not a local IP address.
/// </exception> /// </exception>
/// <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 (System.Net.IPAddress address, int port, bool secure) public WebSocketServer (System.Net.IPAddress address, int port, bool secure)
{ {