我有一个连接到http feed的应用程序,最近得知我需要确保该连接支持TLS 1.2协议。我给人的印象是它使用.NET Framework v 4.0编码的方式,但有人可以验证。
关于此的其他答复指出,仅将框架更新为最新版本就足够了,但我还看到其他答案,建议包括以下语句:
const winston = <any>window.require('winston');
我的问题是,如果我现在仅插入上面的内容而不更新框架,就足够了。另外,我该在下面的代码中插入哪里。为了进行更新,这需要时间,并且需要进行计划。
以下是当前使用的代码:
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;
ServicePointManager.DefaultConnectionLimit = 9999;