I\'m searching for a way to validate (or bypass validation for) self-signed SSL certificates using VB .Net. I found code to do this in C# and tried converting it into VB co
In VB.Net,
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls
solves the less secure apps problem.