SYSLIB0014:WebRequest、HttpWebRequest、ServicePoint 与 WebClient 已过时
从 .NET 6 开始,将以下 API 标记为已过时。 在代码中使用这些 API 会在编译时生成警告 SYSLIB0014
。
- WebRequest()
- System.Net.WebRequest.Create
- System.Net.WebRequest.CreateHttp
- System.Net.WebRequest.CreateDefault(Uri)
- HttpWebRequest(SerializationInfo, StreamingContext)
- ServicePointManager (从 .NET 9 开始)
- System.Net.ServicePointManager.FindServicePoint
- WebClient()
为了减少分析器警告的数量,ServicePoint 类不会标记为已过时,但获取其实例的所有方法都会标记为已过时。
设置 ServicePointManager 和 ServicePoint 不再影响 SslStream 或 HttpClient。
解决方法
请改用 HttpClient。
有关详细信息,请参阅 HttpWebRequest 到 HttpClient 迁移指南。
抑制警告
如果必须使用已过时的 API,可在代码或项目文件中禁止显示警告。
若只想抑制单个冲突,请将预处理器指令添加到源文件以禁用该规则,然后重新启用警告。
// Disable the warning.
#pragma warning disable SYSLIB0014
// Code that uses obsolete API.
// ...
// Re-enable the warning.
#pragma warning restore SYSLIB0014
若要禁止显示项目中的所有 SYSLIB0014
警告,请将属性 <NoWarn>
添加到项目文件。
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
...
<NoWarn>$(NoWarn);SYSLIB0014</NoWarn>
</PropertyGroup>
</Project>
有关详细信息,请参阅取消警告。