SYSLIB0009:不支持 AuthenticationManager
从 .NET 5 开始,以下 API 标记为已过时。 使用这些 API 会在编译时生成警告 SYSLIB0009
,并在运行时引发 PlatformNotSupportedException。
在 .NET 9 及更高版本中,整个 AuthenticationManager 类被标记为已过时。 使用此类会在编译时生成警告 SYSLIB0009
。
此类中的方法要么无操作,要么在运行时引发 PlatformNotSupportedException。
解决方法
实现 IAuthenticationModule,其中具有先前由 AuthenticationManager.Authenticate 调用的方法。
抑制警告
如果必须使用已过时的 API,可在代码或项目文件中禁止显示警告。
若只想抑制单个冲突,请将预处理器指令添加到源文件以禁用该规则,然后重新启用警告。
// Disable the warning.
#pragma warning disable SYSLIB0009
// Code that uses obsolete API.
// ...
// Re-enable the warning.
#pragma warning restore SYSLIB0009
若要禁止显示项目中的所有 SYSLIB0009
警告,请将属性 <NoWarn>
添加到项目文件。
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
...
<NoWarn>$(NoWarn);SYSLIB0009</NoWarn>
</PropertyGroup>
</Project>
有关详细信息,请参阅取消警告。