自定义 User.Identity 添加属性
我自定义 RoleProvider
和 MembershipProvider
类
我想在我的 @User.Identity
中再添加一个属性,这样做吗?
示例:
@User.Identity.About
=> .关于还不存在
我想我应该自定义IIdentity
但不知道从哪里开始。
I customize RoleProvider
and MembershipProvider
classes
I would like to add one more property in my @User.Identity
, as do so?
example:
@User.Identity.About
=> .About not exist yet
I thought I'd customize IIdentity
but do not know where to start.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要创建自己的类来实现 IIdentity 和 IPrincipal。然后将它们分配到 OnPostAuthenticate 中的 global.asax 中。
You need to create your own classes that implement IIdentity and IPrincipal. Then assign them in your global.asax in OnPostAuthenticate.
只需创建一个包装器并覆盖
Page.User
即可。Just create a wrapper and override
Page.User
.