Skip to content

Commit ceac088

Browse files
committed
[Modify] Edit it
1 parent ae2df06 commit ceac088

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

websocket-sharp/Server/HttpServer.cs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,18 +96,19 @@ public HttpServer ()
9696
/// </summary>
9797
/// <remarks>
9898
/// <para>
99-
/// An instance initialized by this constructor listens for the incoming requests on
100-
/// <paramref name="port"/>.
99+
/// The new instance listens for incoming requests on
100+
/// <see cref="System.Net.IPAddress.Any"/> and <paramref name="port"/>.
101101
/// </para>
102102
/// <para>
103-
/// If <paramref name="port"/> is 443, that instance provides a secure connection.
103+
/// It provides secure connections if <paramref name="port"/> is 443.
104104
/// </para>
105105
/// </remarks>
106106
/// <param name="port">
107-
/// An <see cref="int"/> that represents the port number on which to listen.
107+
/// An <see cref="int"/> that represents the number of the port
108+
/// on which to listen.
108109
/// </param>
109110
/// <exception cref="ArgumentOutOfRangeException">
110-
/// <paramref name="port"/> isn't between 1 and 65535 inclusive.
111+
/// <paramref name="port"/> is less than 1 or greater than 65535.
111112
/// </exception>
112113
public HttpServer (int port)
113114
: this (port, port == 443)

0 commit comments

Comments
 (0)