Enum MySqlSslMode
SSL connection options.
Namespace: MySql.Data.MySqlClient
Assembly: Azos.MySql.dll
Syntax
public enum MySqlSslMode
Fields
Name | Description |
---|---|
None | Do not use SSL. |
Preferred | Use SSL if the server supports it. |
Required | Always use SSL. Deny connection if server does not support SSL. |
VerifyCA | Always use SSL. Validate the Certificate Authority but tolerate name mismatch. |
VerifyFull | Always use SSL. Fail if the host name is not correct. |