[Modify] Edit it

This commit is contained in:
sta 2017-11-14 15:19:56 +09:00
parent fdfc127530
commit 222077ae1d

View File

@ -3780,9 +3780,8 @@ namespace WebSocketSharp
} }
/// <summary> /// <summary>
/// Sets the HTTP proxy server URL through which to connect and /// Sets the URL of the HTTP proxy server through which to connect and
/// the credentials for the HTTP authentication (Basic/Digest) by /// the credentials for the HTTP proxy authentication (Basic/Digest).
/// the proxy server.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// This method does nothing if the connection has already been /// This method does nothing if the connection has already been
@ -3790,12 +3789,16 @@ namespace WebSocketSharp
/// </remarks> /// </remarks>
/// <param name="url"> /// <param name="url">
/// <para> /// <para>
/// A <see cref="string"/> that represents the proxy server URL through /// A <see cref="string"/> that represents the URL of the proxy server
/// which to connect. /// through which to connect.
/// </para> /// </para>
/// <para> /// <para>
/// The syntax is http://&lt;host&gt;[:&lt;port&gt;]. /// The syntax is http://&lt;host&gt;[:&lt;port&gt;].
/// </para> /// </para>
/// <para>
/// <see langword="null"/> or an empty string if initializes the URL and
/// the credentials.
/// </para>
/// </param> /// </param>
/// <param name="username"> /// <param name="username">
/// <para> /// <para>
@ -3819,17 +3822,8 @@ namespace WebSocketSharp
/// <exception cref="InvalidOperationException"> /// <exception cref="InvalidOperationException">
/// This instance is not a client. /// This instance is not a client.
/// </exception> /// </exception>
/// <exception cref="ArgumentNullException">
/// <paramref name="url"/> is <see langword="null"/>.
/// </exception>
/// <exception cref="ArgumentException"> /// <exception cref="ArgumentException">
/// <para> /// <para>
/// <paramref name="url"/> is an empty string.
/// </para>
/// <para>
/// -or-
/// </para>
/// <para>
/// <paramref name="url"/> is not an absolute URI string. /// <paramref name="url"/> is not an absolute URI string.
/// </para> /// </para>
/// <para> /// <para>