[Modify] Edit it

This commit is contained in:
sta 2017-05-22 14:50:08 +09:00
parent 10fd7ef16d
commit fa2f01e3f7

View File

@ -267,19 +267,20 @@ namespace WebSocketSharp.Server
/// and <paramref name="secure"/>. /// and <paramref name="secure"/>.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// The new instance listens for the incoming handshake requests on /// The new instance listens for 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 /// A <see cref="System.Net.IPAddress"/> that represents
/// for the server. /// the local IP address on which to listen.
/// </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 number of
/// the port on which to listen.
/// </param> /// </param>
/// <param name="secure"> /// <param name="secure">
/// A <see cref="bool"/> that specifies providing secure connections or not. /// A <see cref="bool"/>: <c>true</c> if the new instance provides
/// <c>true</c> specifies providing secure connections. /// secure connections; otherwise, <c>false</c>.
/// </param> /// </param>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="address"/> is <see langword="null"/>. /// <paramref name="address"/> is <see langword="null"/>.