Skip to content

Commit be39254

Browse files
committed
[Modify] Edit it
1 parent 93fb098 commit be39254

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

websocket-sharp/Server/WebSocketServer.cs

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -252,32 +252,33 @@ public WebSocketServer (System.Net.IPAddress address, int port)
252252
}
253253

254254
/// <summary>
255-
/// Initializes a new instance of the <see cref="WebSocketServer"/> class with
256-
/// the specified <paramref name="address"/>, <paramref name="port"/>,
255+
/// Initializes a new instance of the <see cref="WebSocketServer"/> class
256+
/// with the specified <paramref name="address"/>, <paramref name="port"/>,
257257
/// and <paramref name="secure"/>.
258258
/// </summary>
259259
/// <remarks>
260-
/// An instance initialized by this constructor listens for the incoming connection requests on
260+
/// The new instance listens for the incoming handshake requests on
261261
/// <paramref name="address"/> and <paramref name="port"/>.
262262
/// </remarks>
263263
/// <param name="address">
264-
/// A <see cref="System.Net.IPAddress"/> that represents the local IP address of the server.
264+
/// A <see cref="System.Net.IPAddress"/> that represents the local IP address
265+
/// for the server.
265266
/// </param>
266267
/// <param name="port">
267268
/// An <see cref="int"/> that represents the port number on which to listen.
268269
/// </param>
269270
/// <param name="secure">
270-
/// A <see cref="bool"/> that indicates providing a secure connection or not.
271-
/// (<c>true</c> indicates providing a secure connection.)
271+
/// A <see cref="bool"/> that specifies providing secure connections or not.
272+
/// <c>true</c> specifies providing secure connections.
272273
/// </param>
273274
/// <exception cref="ArgumentNullException">
274275
/// <paramref name="address"/> is <see langword="null"/>.
275276
/// </exception>
276277
/// <exception cref="ArgumentException">
277-
/// <paramref name="address"/> isn't a local IP address.
278+
/// <paramref name="address"/> is not a local IP address.
278279
/// </exception>
279280
/// <exception cref="ArgumentOutOfRangeException">
280-
/// <paramref name="port"/> isn't between 1 and 65535 inclusive.
281+
/// <paramref name="port"/> is less than 1 or greater than 65535.
281282
/// </exception>
282283
public WebSocketServer (System.Net.IPAddress address, int port, bool secure)
283284
{

0 commit comments

Comments
 (0)