Click or drag to resize

NotificationSettingsSmtpSettingsNetworkSettingsSecureSocketOptionsEnum Enumeration

Secure socket options.

Namespace:  Omada.OE.Model
Assembly:  Omada.OE.Model (in Omada.OE.Model.dll) Version: 15.0.0.0
Syntax
C#
public enum SecureSocketOptionsEnum
Members
  Member nameValueDescription
None0 No SSL or TLS encryption should be used.
Auto1 Allow the MailKit.IMailService to decide which SSL or TLS options to use (default). If the server does not support SSL or TLS, then the connection will continue without any encryption.
SslOnConnect2 The connection should use SSL or TLS encryption immediately.
StartTls3 Elevates the connection to use TLS encryption immediately after reading the greeting and capabilities of the server. If the server does not support the STARTTLS extension, then the connection will fail and a System.NotSupportedException will be thrown.
StartTlsWhenAvailable4 Elevates the connection to use TLS encryption immediately after reading the greeting and capabilities of the server, but only if the server supports the STARTTLS extension.
See Also