Answers for "what versions of TLS does .NET 4.5 support"

C#
0

.net 4.5 use tls 1.2

System.Net.ServicePointManager.SecurityProtocol =
    SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
Posted by: Guest on June-15-2020

Code answers related to "what versions of TLS does .NET 4.5 support"

C# Answers by Framework

Browse Popular Code Answers by Language