@@ -75,7 +75,7 @@ public SslOption()
75
75
}
76
76
77
77
/// <summary>
78
- /// Retrieve or set the set of ssl policy errors that are deemed acceptable.
78
+ /// Retrieve or set the set of TLS policy errors that are deemed acceptable.
79
79
/// </summary>
80
80
public SslPolicyErrors AcceptablePolicyErrors { get ; set ; }
81
81
@@ -90,13 +90,13 @@ public SslOption()
90
90
public string CertPath { get ; set ; }
91
91
92
92
/// <summary>
93
- /// An optional client specified SSL certificate selection callback. If this is not specified,
93
+ /// An optional client specified TLS certificate selection callback. If this is not specified,
94
94
/// the first valid certificate found will be used.
95
95
/// </summary>
96
96
public LocalCertificateSelectionCallback CertificateSelectionCallback { get ; set ; }
97
97
98
98
/// <summary>
99
- /// An optional client specified SSL certificate validation callback. If this is not specified,
99
+ /// An optional client specified TLS certificate validation callback. If this is not specified,
100
100
/// the default callback will be used in conjunction with the <see cref="AcceptablePolicyErrors"/> property to
101
101
/// determine if the remote server certificate is valid.
102
102
/// </summary>
@@ -135,13 +135,13 @@ public X509CertificateCollection Certs
135
135
public bool CheckCertificateRevocation { get ; set ; }
136
136
137
137
/// <summary>
138
- /// Flag specifying if Ssl should indeed be used.
138
+ /// Flag specifying if TLS should indeed be used.
139
139
/// </summary>
140
140
public bool Enabled { get ; set ; }
141
141
142
142
/// <summary>
143
143
/// Retrieve or set server's Canonical Name.
144
- /// This MUST match the CN on the Certificate else the SSL connection will fail.
144
+ /// This MUST match the Subject Alternative Name or CN on the Certificate else the TLS connection will fail.
145
145
/// </summary>
146
146
public string ServerName { get ; set ; }
147
147
@@ -155,7 +155,7 @@ public X509CertificateCollection Certs
155
155
/// Only used in environments where System.Security.Authentication.SslProtocols.None
156
156
/// is unavailable or effectively disabled, as reported by System.Net.ServicePointManager.
157
157
/// </summary>
158
- public SslProtocols UseFallbackTlsVersions ( )
158
+ internal SslProtocols UseFallbackTlsVersions ( )
159
159
{
160
160
this . Version = SslProtocols . Tls12 ;
161
161
return Version ;
0 commit comments