[Modify] Edit it

This commit is contained in:
sta 2017-01-29 17:18:31 +09:00
parent 09cb095ed5
commit f300d7333d

View File

@ -131,22 +131,22 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="WebSocketServer"/> class with /// Initializes a new instance of the <see cref="WebSocketServer"/> class
/// the specified WebSocket URL. /// with the specified WebSocket URL.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para> /// <para>
/// An instance initialized by this constructor listens for the incoming connection requests /// The new instance listens for the incoming handshake requests on
/// on the host name and port in <paramref name="url"/>. /// the host name and port of <paramref name="url"/>.
/// </para> /// </para>
/// <para> /// <para>
/// If <paramref name="url"/> doesn't include a port, either port 80 or 443 is used on /// If <paramref name="url"/> includes no port, either port 80 or 443 is
/// which to listen. It's determined by the scheme (ws or wss) in <paramref name="url"/>. /// used on which to listen. It is determined by the scheme (ws or wss) of
/// (Port 80 if the scheme is ws.) /// <paramref name="url"/>.
/// </para> /// </para>
/// </remarks> /// </remarks>
/// <param name="url"> /// <param name="url">
/// A <see cref="string"/> that represents the WebSocket URL of the server. /// A <see cref="string"/> that represents the WebSocket URL for the server.
/// </param> /// </param>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="url"/> is <see langword="null"/>. /// <paramref name="url"/> is <see langword="null"/>.