Answers for "using Tls12 .net 3.5"

C#
0

using Tls12 .net 3.5

Imports System.Security.Authentication
Imports System.Net
Posted by: Guest on May-03-2021
0

using Tls12 .net 3.5

public const SslProtocols _Tls12 = (SslProtocols)0x00000C00;
public const SecurityProtocolType Tls12 = (SecurityProtocolType)_Tls12;
ServicePointManager.SecurityProtocol = Tls12
Posted by: Guest on May-03-2021

C# Answers by Framework

Browse Popular Code Answers by Language