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
/// Option to use the certificate stored in the device as client or server certificate.
35
+
/// The default option is <see langword="false"/>.
36
+
/// </summary>
37
+
/// <remarks>
38
+
/// This property is exclusive of .NET nanoFramework.
39
+
/// In case there is no device certificate stored, the authentication will use whatever is provided (or not) in the parameter of the method being called.
/// <param name="enabledSslProtocols">The <see cref="SslProtocols"/> value that represents the protocol used for authentication.</param>
85
+
/// <remarks>
86
+
/// Instead of providing the client certificate in the <paramref name="clientCertificate"/> parameter the <see cref="UseStoredDeviceCertificate"/> property can be used to use the certificate stored in the device.
/// <param name="ca">Certificate Authority certificate to use for authentication with the server.</param>
86
100
/// <param name="enabledSslProtocols">The <see cref="SslProtocols"/> value that represents the protocol used for authentication.</param>
101
+
/// <remarks>
102
+
/// Instead of providing the client certificate in the <paramref name="clientCertificate"/> parameter the <see cref="UseStoredDeviceCertificate"/> property can be used to use the certificate stored in the device.
@@ -95,6 +112,9 @@ public void AuthenticateAsClient(string targetHost, X509Certificate clientCertif
95
112
/// </summary>
96
113
/// <param name="serverCertificate">The certificate used to authenticate the server.</param>
97
114
/// <param name="enabledSslProtocols">The protocols that may be used for authentication.</param>
115
+
/// <remarks>
116
+
/// Instead of providing the server certificate in the <paramref name="serverCertificate"/> parameter the <see cref="UseStoredDeviceCertificate"/> property can be used to use the certificate stored in the device.
@@ -106,6 +126,9 @@ public void AuthenticateAsServer(X509Certificate serverCertificate, SslProtocols
106
126
/// <param name="serverCertificate">The X509Certificate used to authenticate the server.</param>
107
127
/// <param name="clientCertificateRequired">A <see cref="Boolean"/> value that specifies whether the client is asked for a certificate for authentication. Note that this is only a request, if no certificate is provided, the server still accepts the connection request.</param>
108
128
/// <param name="enabledSslProtocols">The protocols that may be used for authentication.</param>
129
+
/// <remarks>
130
+
/// Instead of providing the server certificate in the <paramref name="serverCertificate"/> parameter the <see cref="UseStoredDeviceCertificate"/> property can be used to use the certificate stored in the device.
0 commit comments