2014-10-29 51 views
1

.NET 3.5中ServicePointManager.SecurityProtocol的默認值是什麼?ServicePointManager.SecurityProtocol .NET 3.5默認

我似乎無法在MSDN或其他來源找到答案。我想確保在.NET 3.5應用程序中創建的HttpWebRequest將嘗試TLS,因爲Authorize.NET和其他公司因POODLE錯誤而禁用SSLv3支持。

回答

0

你總是可以進行測試,以找出...

static void Main(string[] args) 
{ 
    Console.WriteLine(ServicePointManager.SecurityProtocol); 

    Console.ReadKey(true); 
} 

輸出:

enter image description here

不過要小心,因爲這可能不是在所有環境中的一致。老實說不要冒險,只需自己設定。