0 votes
by (1.2k points)
edited by

private void ftp_ValidatingCertificate(
    object sender, 
    SslCertificateValidationEventArgs e)
{
    if (IgnoreCertificateErrors)
    {
        e.Accept();
    }
}

Applies to: Rebex FTP/SSL

1 Answer

+1 vote
by (3.9k points)
edited by
 
Best answer

by (1.2k points)
Thanks a lot! That is exactly the behaviour I would have expected and was looking for.
...