当前上下文中不存在名称 'DefaultAuthenticationTypes'
The name 'DefaultAuthenticationTypes' does not exist in the current context
我正在尝试在我的 Web 应用程序中实现基于角色的授权,如下所示:
[HttpPost]
[ActionName("Login")]
public ActionResult Login(LoginViewModel model)
{
if (ModelState.IsValid)
{
string userName = model.Username;
string[] userRoles = (string[])Session["UserRoles"];
ClaimsIdentity identity = new ClaimsIdentity(DefaultAuthenticationTypes.ApplicationCookie);
identity.AddClaim(new Claim(ClaimTypes.NameIdentifier, userName));
userRoles.ToList().ForEach((role) => identity.AddClaim(new Claim(ClaimTypes.Role, role)));
identity.AddClaim(new Claim(ClaimTypes.Name, userName));
AuthenticationManager.SignIn(identity);
return RedirectToAction("Success");
}
else
{
return View("Login",model);
}
}
我在两行中遇到错误:
1.ClaimsIdentity identity = new ClaimsIdentity(DefaultAuthenticationTypes.ApplicationCookie);
并且:
2.AuthenticationManager.SignIn(identity);
错误一:
the name 'DefaultAuthenticationTypes' does not exist in the current context
而错误 2 是:
Authentication manager does not contains definition for SignIn
我试图找到一个解决方案来实现这个,但我找不到与错误相关的任何内容。
DefaultAuthenticationTypes
是身份框架的一部分,可在 Microsoft.AspNet.Identity
命名空间中找到。
要使用它,请在文件顶部添加一个using
using Microsoft.AspNet.Identity;
//...other code
identity = new ClaimsIdentity(DefaultAuthenticationTypes.ApplicationCookie);
或直接调用
identity = new ClaimsIdentity(Microsoft.AspNet.Identity.DefaultAuthenticationTypes.ApplicationCookie);
第二个问题已经在您的另一个问题中得到处理
对于第一个,它只是一个常量字符串
如果您不想安装软件包,最快(但不是很正统)的解决方案是
ClaimsIdentity identity = new ClaimsIdentity("ApplicationCookie");
可以看到定义here
我正在尝试在我的 Web 应用程序中实现基于角色的授权,如下所示:
[HttpPost]
[ActionName("Login")]
public ActionResult Login(LoginViewModel model)
{
if (ModelState.IsValid)
{
string userName = model.Username;
string[] userRoles = (string[])Session["UserRoles"];
ClaimsIdentity identity = new ClaimsIdentity(DefaultAuthenticationTypes.ApplicationCookie);
identity.AddClaim(new Claim(ClaimTypes.NameIdentifier, userName));
userRoles.ToList().ForEach((role) => identity.AddClaim(new Claim(ClaimTypes.Role, role)));
identity.AddClaim(new Claim(ClaimTypes.Name, userName));
AuthenticationManager.SignIn(identity);
return RedirectToAction("Success");
}
else
{
return View("Login",model);
}
}
我在两行中遇到错误:
1.ClaimsIdentity identity = new ClaimsIdentity(DefaultAuthenticationTypes.ApplicationCookie);
并且:
2.AuthenticationManager.SignIn(identity);
错误一:
the name 'DefaultAuthenticationTypes' does not exist in the current context
而错误 2 是:
Authentication manager does not contains definition for SignIn
我试图找到一个解决方案来实现这个,但我找不到与错误相关的任何内容。
DefaultAuthenticationTypes
是身份框架的一部分,可在 Microsoft.AspNet.Identity
命名空间中找到。
要使用它,请在文件顶部添加一个using
using Microsoft.AspNet.Identity;
//...other code
identity = new ClaimsIdentity(DefaultAuthenticationTypes.ApplicationCookie);
或直接调用
identity = new ClaimsIdentity(Microsoft.AspNet.Identity.DefaultAuthenticationTypes.ApplicationCookie);
第二个问题已经在您的另一个问题中得到处理
对于第一个,它只是一个常量字符串
如果您不想安装软件包,最快(但不是很正统)的解决方案是
ClaimsIdentity identity = new ClaimsIdentity("ApplicationCookie");
可以看到定义here