从 AzMan 获取所有操作
我正在尝试获取与用户相关的操作列表。
我正在使用 AzMan 来存储应用程序授权规则。
如何使用 EntLib 4.1 SecurityApplicationBlocks 或任何其他方式获取每个用户的操作列表?
[C#]
谢谢。
I'm trying to fetch a list of operations related to user.
I'm using AzMan to store the application authorization rules.
How can i get list of operations per user using EntLib 4.1 SecurityApplicationBlocks or any other way?
[C#]
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 AZROLESLib 命名空间。
基本上,角色定义包含操作或任务,操作或任务又包含操作。
角色分配将用户或组(依次包含用户)与角色定义链接起来。
然后,要获取分配给用户的操作列表,您需要直接或间接通过组获取用户所在的角色分配,并直接或间接通过任务获取分配给该角色分配的操作。
一些信息此处。
You can use the AZROLESLib namespace.
Basically, Role Definitions contain operations or tasks, which contain in turn operations.
Role Assignments link Users or Groups -which contain in turn Users- with Role Definitions.
Then, to get the lists of operations assigned to a user, you need to get the roles assignments the user is in, directly or indirectly through a group, and get the operations assigned to that role assignment, either directly or indirectly through a task.
Some info here.