You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/MySqlConnector/MySqlConnectionStringBuilder.cs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -187,12 +187,12 @@ public string CertificatePassword
187
187
}
188
188
189
189
/// <summary>
190
-
/// The path to the client�s SSL certificate file in PEM format. <see cref="SslKey"/> must also be specified, and <see cref="CertificateFile"/> should not be.
190
+
/// The path to the client’s SSL certificate file in PEM format. <see cref="SslKey"/> must also be specified, and <see cref="CertificateFile"/> should not be.
191
191
/// </summary>
192
192
[AllowNull]
193
193
[Category("TLS")]
194
194
[DefaultValue("")]
195
-
[Description("The path to the client�s SSL certificate file in PEM format.")]
195
+
[Description("The path to the client’s SSL certificate file in PEM format.")]
196
196
[DisplayName("SSL Cert")]
197
197
publicstringSslCert
198
198
{
@@ -201,12 +201,12 @@ public string SslCert
201
201
}
202
202
203
203
/// <summary>
204
-
/// The path to the client�s SSL private key in PEM format. <see cref="SslCert"/> must also be specified, and <see cref="CertificateFile"/> should not be.
204
+
/// The path to the client’s SSL private key in PEM format. <see cref="SslCert"/> must also be specified, and <see cref="CertificateFile"/> should not be.
205
205
/// </summary>
206
206
[AllowNull]
207
207
[Category("TLS")]
208
208
[DefaultValue("")]
209
-
[Description("The path to the client�s SSL private key in PEM format.")]
209
+
[Description("The path to the client’s SSL private key in PEM format.")]
210
210
[DisplayName("SSL Key")]
211
211
publicstringSslKey
212
212
{
@@ -229,7 +229,7 @@ public string CACertificateFile
229
229
}
230
230
231
231
/// <summary>
232
-
/// The path to a CA certificate file in a PEM Encoded (.pem) format. This should be used with a value for the <see cref="SslMode"/> property of <see cref="MySqlSslMode.VerifyCA"/> or <see cref="MySqlSslMode.VerifyFull"/> to enable verification of a CA certificate that is not trusted by the operating system�s certificate store.
232
+
/// The path to a CA certificate file in a PEM Encoded (.pem) format. This should be used with a value for the <see cref="SslMode"/> property of <see cref="MySqlSslMode.VerifyCA"/> or <see cref="MySqlSslMode.VerifyFull"/> to enable verification of a CA certificate that is not trusted by the operating system’s certificate store.
233
233
/// </summary>
234
234
[AllowNull]
235
235
[Category("TLS")]
@@ -707,12 +707,12 @@ public string ServerRsaPublicKeyFile
707
707
}
708
708
709
709
/// <summary>
710
-
/// The server�s Service Principal Name (for <c>auth_gssapi_client</c> authentication).
710
+
/// The server’s Service Principal Name (for <c>auth_gssapi_client</c> authentication).
711
711
/// </summary>
712
712
[AllowNull]
713
713
[Category("Connection")]
714
714
[DefaultValue("")]
715
-
[Description("The server�s Service Principal Name (for auth_gssapi_client authentication).")]
715
+
[Description("The server’s Service Principal Name (for auth_gssapi_client authentication).")]
0 commit comments