- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试在 MVC5 应用程序中实现简单的基于角色的身份验证 + 授权,但我在尝试理解身份框架中涉及的所有部分时感到有些头疼
我正在阅读一些教程和指南,但我仍然没有一个清晰的想法。
特别是:IIdentity
、IPrincipal
或 IUser
接口(interface)之间的区别是什么?我应该实现其中的哪一个?
最佳答案
'IPrincipal' 是一个 .Net framework's interface :
public interface IPrincipal {
// Retrieve the identity object
IIdentity Identity { get; }
// Perform a check for a specific role
bool IsInRole (string role);
}
这个接口(interface)定义了登录用户的基本功能。实现此接口(interface)的对象表示您的代码在其下运行的安全上下文。您可以在 .Net 中获得不同风格的 IPrincipal
:ClaimsPrincipal
、WindowsPrincipal
和其他 - 所有这些都取决于您使用的框架。如果您正在使用 Asp.Net Identity 框架,您将处理 ClaimsPrincipal
。通常你不需要实现这个接口(interface)。
IIdentity
表示用户的权限。对于 Asp.Net Identity 框架,您将处理 ClaimsIdentity .同样,这是您不需要实现的事情。
Here is more documentation关于 IPrincipal
和 IIDentity
。
IUser
是 Asp.Net Identity 框架的一部分。如果您使用身份的 Entity Framework 部分,you'll be provided with您可以继承和扩展的 IdentityUser
类。这是供您实现的模型。
基本上 IdentityUser
是一个保存在数据库中的 POCO。当用户登录时,来自IdentityUser
的信息将被框架转换为ClaimsPrincipal
和ClaimsIdentity
。当您访问 HttpContext.Current.User
时,您将获得 ClaimsPrincipal
。
希望这能为您解决问题。
关于c# - IIdentity、IPrincipal 或 IUser : what's the difference?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31477485/
================================= 现在我的登录页面有问题; Vector 无法转换为 IUser 我的无状态Bean /* * To change this tem
我正在尝试在 MVC5 应用程序中实现简单的基于角色的身份验证 + 授权,但我在尝试理解身份框架中涉及的所有部分时感到有些头疼 我正在阅读一些教程和指南,但我仍然没有一个清晰的想法。 特别是:IIde
我正在尝试为我的 Web 应用程序实现一个带有电子邮件确认的注册过程。我正在使用 IdentityServer3.AspNetIdentity 服务。 public class AspNetIdent
我正在尝试在身份成员身份的自定义实现这个黑洞中导航。我现在的目标只是从我的 ApiController 中获取此行以正确检索我的 UserManager: public IHttpActionResu
我正在尝试根据现有数据库对用户进行身份验证。我发现我需要实现 IUserStore。我正在尝试创建实现 IUser 的自定义用户,我可以发现 IUser 位于 Microsoft.AspNet.Ide
我有这个代码: public class BaanUserStore : IUserStore, IUserPasswordStore where TUser : Microsoft.AspNet.I
在我的 Api 服务中,我有这个简单的 getUsers 函数来获取 API 上的所有用户。 public getUsers(url: string): Observable { return
我正在努力找出哪些 .Net 身份验证概念在 OWIN 世界中仍然相关,哪些现在已经过时。从 OWIN 之前的 ASP.Net 时代开始,我就习惯于处理 .Net 构造:FormsAuthentica
我正在使用 Asp.Net Identity 框架,我有一个如下所示的用户类: public class User : IUser { public string Id {get; privat
我们正在开发一个使用 ASP.NET Identity(v 1.0)的应用程序。我们定义了一个实现 IUser 接口(interface)的 User 类。我们的存储库类 UserRepository
我是一名优秀的程序员,十分优秀!