哪种模式可用于身份验证和授权....c#
场景: -
1)c# 中有基于 trade 的 winApp。您必须查看用户是否有权使用特定模块(宏级别身份验证)。
2) 此外,您必须检查授权用户是否有足够的权限来访问某些报告/菜单/属性等。(更细粒度的授权)
问题: -
您“必须”使用设计模式。根据您的判断,哪种模式适合这种情况。
限制:-
你无法避免使用模式。您必须使用标准/自定义模式来实现它。
Scenario: -
1) There is trade based winApp in c#. You have to see whether the user is authorized for particular module(macro level authentication).
2) Further you have to check whether authorized user is having sufficient rights to access certain reports/menus / properties etc. (more granular level authorization)
Question: -
You "have to" use design pattern(s). According to you which pattern(s) is/are suitable for this scenario.
Constraints:-
you cannot avoid using pattern(s). You have to use standard / custom pattern(s) to achieve it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能希望使用命令模式来查看用户是否有权执行特定操作(如果没有禁用)。
查看 MS Enterprise Libraries 可能会有所帮助,我已经看到我的团队使用它进行身份验证(基于角色/组)
You might want to use Command pattern to see if the user is entitled to perform particular, if not disable.
Looking at MS Enterprise Libraries might help, I have seen my team use it for authentication stuff (based on roles/groups)