Skip to content
Gerdus van Zyl edited this page Feb 27, 2017 · 1 revision

Welcome to the tus-dotnet-client wiki!

SSL/TLS protocols

Instructions on how to specify Security Protocol. via @heri16

C# .NET

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;

Powershell:

[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls11 -bor [System.Net.SecurityProtocolType]::Tls12
Clone this wiki locally