ImapSslProtocol Property
Gets or sets the security protocol to be used for performing TLS/SSL negotiation and data encryption.

Namespace: MailBee.ImapMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public SecurityProtocol SslProtocol { get; set; }

Property Value

Type: SecurityProtocol
One of SecurityProtocol values specifying the security protocol to be used for performing TLS/SSL negotiation and data encryption. The default value is Auto.
Remarks

The default value allows MailBee to select the best (the most secure) protocol supported by the mail server. However, if the mail server does not support automatic protocol negotiation, it will likely close the connection (MailBeeSocketResetException will be thrown). In this case, the application should set this property to non-Auto value (such as Tls12).

Note Note
In case of UWP platform, MailBee always uses TlsAuto setting.
See Also