TLSExcludeVersion
This property indicates which SSL/TLS versions connections should not be enabled for.
Declaration
// C# public static string TLSExcludeVersion { get; set; }
Property Type
System.String
Description
The TLSVersion
or SSLVersion
properties sets the supported connection SSL/TLS versions. TLSExcludeVersion
sets the versions that the app connections cannot use.
Typically, TLSExcludeVersion
is used when the TLS/SSL version has a minimum value set, such as TLSv1.2+
, and the app wants to prevent connections from using a version above the minimum value, such as TLS 1.3
.
Supported exclusion values are: 1.2|TLSv1.2|1.3|TLSv1.3
. To specify more than one SSL/TLS version to exclude, enclose the version numbers between parentheses and separate the values with a comma. For example, (1.2
,1.3
).
This property has no default value.
An exception will be thrown for invalid value.
This property overrides the TLS_EXCLUDE_VERSION
parameter, including the full connect descriptor and Easy Connect Plus configuration.