[Modify] Edit it

This commit is contained in:
sta 2017-05-02 17:51:33 +09:00
parent 9c38b22669
commit c4f02ecfa6

View File

@ -56,12 +56,12 @@ namespace WebSocketSharp.Net
#region Public Constructors
/// <summary>
/// Initializes a new instance of the <see cref="ServerSslConfiguration"/> class with
/// the specified <paramref name="serverCertificate"/>.
/// Initializes a new instance of the <see cref="ServerSslConfiguration"/> class
/// with the specified <paramref name="serverCertificate"/>.
/// </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>
public ServerSslConfiguration (X509Certificate2 serverCertificate)
: this (serverCertificate, false, SslProtocols.Default, false)