[Modify] Edit it

This commit is contained in:
sta 2017-05-10 14:49:44 +09:00
parent a43aae2a49
commit dc3e702e77

View File

@ -68,24 +68,26 @@ namespace WebSocketSharp.Net
} }
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="ClientSslConfiguration"/> class with /// Initializes a new instance of the <see cref="ClientSslConfiguration"/> class
/// the specified <paramref name="targetHost"/>, <paramref name="clientCertificates"/>, /// with the specified <paramref name="targetHost"/>,
/// <paramref name="enabledSslProtocols"/>, and <paramref name="checkCertificateRevocation"/>. /// <paramref name="clientCertificates"/>,
/// <paramref name="enabledSslProtocols"/>,
/// and <paramref name="checkCertificateRevocation"/>.
/// </summary> /// </summary>
/// <param name="targetHost"> /// <param name="targetHost">
/// A <see cref="string"/> that represents the name of the server that shares /// A <see cref="string"/> that represents the name of the server that
/// a secure connection. /// will share a secure connection.
/// </param> /// </param>
/// <param name="clientCertificates"> /// <param name="clientCertificates">
/// A <see cref="X509CertificateCollection"/> that contains client certificates. /// A <see cref="X509CertificateCollection"/> that contains client certificates.
/// </param> /// </param>
/// <param name="enabledSslProtocols"> /// <param name="enabledSslProtocols">
/// The <see cref="SslProtocols"/> enum value that represents the protocols used for /// The <see cref="SslProtocols"/> enum values that represent the protocols
/// authentication. /// used for authentication.
/// </param> /// </param>
/// <param name="checkCertificateRevocation"> /// <param name="checkCertificateRevocation">
/// <c>true</c> if the certificate revocation list is checked during authentication; /// <c>true</c> if the certificate revocation list is checked during
/// otherwise, <c>false</c>. /// authentication; otherwise, <c>false</c>.
/// </param> /// </param>
public ClientSslConfiguration ( public ClientSslConfiguration (
string targetHost, string targetHost,