Closed
Description
Currently the MySqlConnectionStringBuilder has the ability to add SSL Certificates which accepts physical paths only.
It would be good if there is a feature added to pass the certificate directly in X509Certificate/X509Certificate2 format as against physical path.
Example :
AS IS
var buiderObject = new MySQLConnectionStringBuilder
{
...
CertificateFile = <PFX file Path>,
...
}
TO BE
var buiderObject = new MySQLConnectionStringBuilder
{
...
CertificateFile = new X509Certificate2(...), OR new X509Certificate(...),
...
}