Click or drag to resize
MimeKit

SslHandshakeException Class

The exception that is thrown when there is an error during the SSL/TLS handshake.
Inheritance Hierarchy
SystemObject
  SystemException
    MailKit.SecuritySslHandshakeException

Namespace: MailKit.Security
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
[SerializableAttribute]
public class SslHandshakeException : Exception

The SslHandshakeException type exposes the following members.

Constructors
 NameDescription
Public methodSslHandshakeException Initializes a new instance of the SslHandshakeException class.
Public methodSslHandshakeException(String) Initializes a new instance of the SslHandshakeException class.
Protected methodSslHandshakeException(SerializationInfo, StreamingContext) Initializes a new instance of the SslHandshakeException class.
Public methodSslHandshakeException(String, Exception) Initializes a new instance of the SslHandshakeException class.
Top
Properties
 NameDescription
Public propertyData
(Inherited from Exception)
Public propertyHelpLink
(Inherited from Exception)
Public propertyHResult
(Inherited from Exception)
Public propertyInnerException
(Inherited from Exception)
Public propertyMessage
(Inherited from Exception)
Public propertyRootCertificateAuthority Get the certificate for the Root Certificate Authority.
Public propertyServerCertificate Get the server's SSL certificate.
Public propertySource
(Inherited from Exception)
Public propertyStackTrace
(Inherited from Exception)
Public propertyTargetSite
(Inherited from Exception)
Top
Methods
 NameDescription
Public methodEquals
(Inherited from Object)
Protected methodFinalize
(Inherited from Object)
Public methodGetBaseException
(Inherited from Exception)
Public methodGetHashCode
(Inherited from Object)
Public methodGetObjectData When overridden in a derived class, sets the SerializationInfo with information about the exception.
(Overrides ExceptionGetObjectData(SerializationInfo, StreamingContext))
Public methodGetType
(Inherited from Exception)
Protected methodMemberwiseClone
(Inherited from Object)
Public methodToString
(Inherited from Exception)
Top
Events
 NameDescription
Protected eventSerializeObjectState
(Inherited from Exception)
Top
Remarks

The exception that is thrown when there is an error during the SSL/TLS handshake.

When this exception occurrs, it typically means that the IMAP, POP3 or SMTP server that you are connecting to is using an SSL certificate that is either expired or untrusted by your system.

Often times, mail servers will use self-signed certificates instead of using a certificate that has been signed by a trusted Certificate Authority. When your system is unable to validate the mail server's certificate because it is not signed by a known and trusted Certificate Authority, this exception will occur.

You can work around this problem by supplying a custom RemoteCertificateValidationCallback and setting it on the client's ServerCertificateValidationCallback property.

Most likely, you'll want to compare the thumbprint of the server's certificate with a known value and/or prompt the user to accept the certificate (similar to what you've probably seen web browsers do when they encounter untrusted certificates).

See Also