[Modify] Edit it

This commit is contained in:
sta 2017-05-21 15:33:36 +09:00
parent 67ed915461
commit b4f0330648

View File

@ -133,25 +133,25 @@ namespace WebSocketSharp.Server
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="WebSocketServer"/> class /// Initializes a new instance of the <see cref="WebSocketServer"/> class
/// with the specified WebSocket URL. /// with the specified <paramref name="url"/>.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para> /// <para>
/// The new instance listens for the incoming handshake requests on /// The new instance listens for the incoming handshake requests on
/// the host name and port of <paramref name="url"/>. /// the host and port of <paramref name="url"/>.
/// </para> /// </para>
/// <para> /// <para>
/// It provides secure connections if the scheme of <paramref name="url"/> /// It provides secure connections if the scheme of <paramref name="url"/>
/// is wss. /// is wss.
/// </para> /// </para>
/// <para> /// <para>
/// If <paramref name="url"/> includes no port, either port 80 or 443 is /// Either port 80 or 443 is used if <paramref name="url"/> includes
/// used on which to listen. It is determined by the scheme (ws or wss) /// no port. Port 443 is used if the scheme of <paramref name="url"/>
/// of <paramref name="url"/>. /// is wss; otherwise, port 80 is used.
/// </para> /// </para>
/// </remarks> /// </remarks>
/// <param name="url"> /// <param name="url">
/// A <see cref="string"/> that represents the WebSocket URL for the server. /// A <see cref="string"/> that represents the WebSocket URL of the server.
/// </param> /// </param>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="url"/> is <see langword="null"/>. /// <paramref name="url"/> is <see langword="null"/>.