We are unable to connect to an HTTPS server using WebRequest
because of this error message:
The request was aborted: Could not create SSL/TLS secure channel.
i use this code on net framwwork 4.8, website use tls 1.3
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;
ServicePointManager.DefaultConnectionLimit = 9999;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls11|
SecurityProtocolType.Tls12|
SecurityProtocolType.Tls13;
WebRequest.Create("https://manga1001.com/").GetResponse();