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>
如需詳細資訊,請參閱隱藏警告。