[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>
/// Initializes a new instance of the <see cref="ServerSslConfiguration"/> class with
/// the specified <paramref name="serverCertificate"/>,
/// <paramref name="clientCertificateRequired"/>, <paramref name="enabledSslProtocols"/>,
/// Initializes a new instance of the <see cref="ServerSslConfiguration"/> class
/// with the specified <paramref name="serverCertificate"/>,
/// <paramref name="clientCertificateRequired"/>,
/// <paramref name="enabledSslProtocols"/>,
/// and <paramref name="checkCertificateRevocation"/>.
/// </summary>
/// <param name="serverCertificate">
/// A <see cref="X509Certificate2"/> that represents the certificate used to authenticate
/// the server.
/// A <see cref="X509Certificate2"/> that represents an X.509 certificate
/// used to authenticate the server.
/// </param>
/// <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>.
/// </param>
/// <param name="enabledSslProtocols">
/// The <see cref="SslProtocols"/> enum value that represents the protocols used for
/// authentication.
/// The <see cref="SslProtocols"/> enum values that represent the protocols
/// used for authentication.
/// </param>
/// <param name="checkCertificateRevocation">
/// <c>true</c> if the certificate revocation list is checked during authentication;
/// otherwise, <c>false</c>.
/// <c>true</c> if the certificate revocation list is checked during
/// authentication; otherwise, <c>false</c>.
/// </param>
public ServerSslConfiguration (
X509Certificate2 serverCertificate,