Security.Principal 和 Security.Permissions 示例

发布于 2024-12-11 14:04:41 字数 174 浏览 0 评论 0原文

在哪里可以找到有关 Security.PrincipalSecurity.Permissions 的示例?

我想开发一个 Winform 登录表单和 Webform 登录页面并管理它们的安全性。我想知道这两个命名空间如何以及有多大帮助我。

谢谢

Where I can Find some Example about Security.Principal and Security.Permissions?

I want to develop a Winform login form and Webform login page and manage their security.I want to know how and how much this 2 namespaces help me.

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

以歌曲疗慰 2024-12-18 14:04:41

如果您使用 Windows 窗体,最好的选择是使用 WindowsPrincipal 类。您有权访问活动目录吗?你想保护什么?

如果您的应用程序仅使用数据库的平面文件,您真正需要的只是在它使用的文件上设置 ACL,Windows 将阻止任何应用程序(而不仅仅是您的应用程序)访问该文件。或者您是否需要远程访问资源,例如 WCF、SQL、Web 服务。

我们需要一些信息,以便为您提供更好的答案。但取而代之的是,除了检查用户组或 WindowsPrincipal.IsAdministrator(例如作为应用程序中的检查)之外,您最好不要编写任何代码。如果这就是您要采取的路线,那么您需要考虑 Windows Vista/7 中的 UAC。

更多信息请:

Give you are using windows forms, your best bet will be to use the WindowsPrincipal class. Do you have access to an active directory? What are you trying to secure?

If your app just uses a flat file for the database, all you really need is to set an ACL on the file it uses, windows will stop any app, not just yours from accessing the file. Or do you need to access resources remotely, like WCF, SQL, Web services.

We need a little info and we can give you a better answer. But in lieu of that, you are definately better off not writing any code other than a check of the user's group or WindowsPrincipal.IsAdministrator for instance as a check in your app. If that's the route you are going to take, then you need to consider UAC in Windows Vista/7.

More info please:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文