SYSLIB0028:X509Certificate2.PrivateKey 已淘汰
從 .NET 6 開始,X509Certificate2.PrivateKey 屬性會標示為已淘汰。 在程式碼中使用此 API,會在編譯時產生警告 SYSLIB0028
。
因應措施
請使用適當的方法 (例如 RSACertificateExtensions.GetRSAPrivateKey(X509Certificate2)) 來取得私密金鑰,或使用 X509Certificate2.CopyWithPrivateKey(ECDiffieHellman) 方法來建立具有私密金鑰的新執行個體。
隱藏警告
若您必須使用已淘汰的 API,您可以在程式碼或專案檔中隱藏警告。
若要只隱藏單一違規,請將前置處理器指示詞新增至原始程式碼檔案,以停用並重新啟用警告。
// Disable the warning.
#pragma warning disable SYSLIB0028
// Code that uses obsolete API.
// ...
// Re-enable the warning.
#pragma warning restore SYSLIB0028
若要隱藏專案中的所有 SYSLIB0028
警告,請將 <NoWarn>
屬性新增至專案檔。
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
...
<NoWarn>$(NoWarn);SYSLIB0028</NoWarn>
</PropertyGroup>
</Project>
如需詳細資訊,請參閱隱藏警告。