我们遇到了同样的问题。
我们正在从Web应用程序中使用GetRequestStream()
。
但是抛出以下异常。
WebException:基础连接已关闭:意外 发送时发生错误。
我们已经有以下代码行可以控制TLS,我们的代码位于.NET 4.6.1中
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls;
还有httpWebRequest.KeepAlive = false;
感谢您的帮助。