02-07-2024 06:06 AM
I'd like to implement the following function in labview:
but the System.Net.ServicePointManager has no constructor, so while I can set the Type to TLS12 I cant write it to the SecurityProtocol
Any ideas about this?
Thanks.
Solved! Go to Solution.
02-07-2024 06:22 AM - edited 02-07-2024 06:24 AM
It is a static class. It has no constructor.
Put a Property node in diagramm, ->right-click->Select class..,->.NET->browse->select ServicePointManager :
02-07-2024 06:40 AM
ServicePointManager is a static class. ServicePointManager.SecurityProtocol is a property of that static class. Static classes are not instantiated (constructed) but simply accessed through a property or method node.