In my application i want to check which Security Protocol the client supports. I have the newest .Net Version.
My Idea is to set the SecurityProtocol to the SecurityProtocolType Tls1.2 like:
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
My question is, if the client doesn´t support TLS1.2 does the ServicePointManager(SecurityProtocol) throws an exception that this version isn´t supported?