File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments