[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> /// <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> /// </summary>
/// <remarks> /// <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> /// </remarks>
/// <value> /// <value>
/// A <see cref="RemoteCertificateValidationCallback"/> delegate that references the method /// <para>
/// used to validate the client certificate. The default value is a function that only returns /// A <see cref="RemoteCertificateValidationCallback"/> delegate.
/// <c>true</c>. /// </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> /// </value>
public RemoteCertificateValidationCallback ClientCertificateValidationCallback { public RemoteCertificateValidationCallback ClientCertificateValidationCallback {
get { get {