gpt4 book ai didi

c# - 找不到命名空间 System.IdentityModel.Services

转载 作者:行者123 更新时间:2023-11-30 20:17:20 28 4
gpt4 key购买 nike

我正在尝试通过实现 UserNamePasswordValidator 来提供用户身份验证。我添加了 Microsoft.IdentityModelSystem.IdentityModel.Tokens.ValidatingIssuerNameRegistry nuget 包。

当我在我的类 UserAuthentication 中实现 UserNamePasswordValidator 时出现错误

The type or namespace name Selectors does not exist in namespaceSystem.IdentityModel (are you missing some reference).

为什么会失败?

public class UserAuthentication : System.IdentityModel.Selectors.UserNamePasswordValidator
{
public override void Validate(string userName, string password)
{
try
{
if (userName == "test" && password == "test123")
{
Console.WriteLine("Authentic User");
}
}
catch (Exception ex)
{
throw new FaultException("Unknown Username or Incorrect Password");
}
}
}

最佳答案

添加 nuget 包是不够的(在你的情况下,也是不必要的),你需要在你的项目中引用 dll。在解决方案资源管理器中查找引用列表。

右键单击 -> 添加引用 -> 在搜索框中键入 System.IdentityModel -> 选择正确的 dll -> 单击确定 -> 一切顺利

关于c# - 找不到命名空间 System.IdentityModel.Services,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44920443/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com