[Modify] Edit it

This commit is contained in:
sta 2017-01-30 16:12:59 +09:00
parent b6909ac867
commit 0f97aea558

View File

@ -195,18 +195,18 @@ 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 connection requests on /// The new instance listens for the incoming handshake requests on
/// <paramref name="port"/>. /// <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 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="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, bool secure) public WebSocketServer (int port, bool secure)
{ {