[Modify] Edit it

This commit is contained in:
sta 2017-05-03 15:18:54 +09:00
parent 3494f6ae40
commit d62dfa5cd3

View File

@ -69,26 +69,27 @@ namespace WebSocketSharp.Net
} }
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="ServerSslConfiguration"/> class with /// Initializes a new instance of the <see cref="ServerSslConfiguration"/> class
/// the specified <paramref name="serverCertificate"/>, /// with the specified <paramref name="serverCertificate"/>,
/// <paramref name="clientCertificateRequired"/>, <paramref name="enabledSslProtocols"/>, /// <paramref name="clientCertificateRequired"/>,
/// <paramref name="enabledSslProtocols"/>,
/// and <paramref name="checkCertificateRevocation"/>. /// and <paramref name="checkCertificateRevocation"/>.
/// </summary> /// </summary>
/// <param name="serverCertificate"> /// <param name="serverCertificate">
/// A <see cref="X509Certificate2"/> that represents the certificate used to authenticate /// A <see cref="X509Certificate2"/> that represents an X.509 certificate
/// the server. /// used to authenticate the server.
/// </param> /// </param>
/// <param name="clientCertificateRequired"> /// <param name="clientCertificateRequired">
/// <c>true</c> if the client must supply a certificate for authentication; /// <c>true</c> if the client is asked for a certificate for authentication;
/// otherwise, <c>false</c>. /// otherwise, <c>false</c>.
/// </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 ServerSslConfiguration ( public ServerSslConfiguration (
X509Certificate2 serverCertificate, X509Certificate2 serverCertificate,