[Modify] Edit it

This commit is contained in:
sta 2017-05-04 15:24:08 +09:00
parent 79ca5fc297
commit 63cd5a298e

View File

@ -126,15 +126,21 @@ namespace WebSocketSharp.Net
}
/// <summary>
/// Gets or sets the callback used to validate the certificate supplied by the client.
/// Gets or sets the callback used to validate the certificate
/// supplied by the client.
/// </summary>
/// <remarks>
/// If this callback returns <c>true</c>, the client certificate will be valid.
/// The certificate is valid if the callback returns <c>true</c>.
/// </remarks>
/// <value>
/// A <see cref="RemoteCertificateValidationCallback"/> delegate that references the method
/// used to validate the client certificate. The default value is a function that only returns
/// <c>true</c>.
/// <para>
/// A <see cref="RemoteCertificateValidationCallback"/> delegate.
/// </para>
/// <para>
/// It invokes the method called for validating the certificate.
/// The default value is a delegate that invokes a method that
/// only returns <c>true</c>.
/// </para>
/// </value>
public RemoteCertificateValidationCallback ClientCertificateValidationCallback {
get {