本文介绍了如何添加ASP.NET中的身份声明的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图找到如何添加自定义声明使用ASP.NET身份在MVC 5用户身份的文档或例子。这个例子应该显示在何处插入在OWIN安全管道索赔和如何坚持他们使用窗体身份验证的cookie。
I am trying to find a document or example of how you would add custom claims to the user identity in MVC 5 using ASP.NET Identity. The example should show where to insert the claims in the OWIN security pipeline and how to persist them in a cookie using forms authentication.
推荐答案
也许following文章可以帮助:
var claims = new List<Claim>();
claims.Add(new Claim(ClaimTypes.Name, "Brock"));
claims.Add(new Claim(ClaimTypes.Email, "[email protected]"));
var id = new ClaimsIdentity(claims,DefaultAuthenticationTypes.ApplicationCookie);
var ctx = Request.GetOwinContext();
var authenticationManager = ctx.Authentication;
authenticationManager.SignIn(id);
这篇关于如何添加ASP.NET中的身份声明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!