从网络位置启动 C# 应用程序时出现安全异常

发布于 2024-08-09 01:29:44 字数 261 浏览 1 评论 0原文

我有一个用 C# 编写的非常小的实用程序应用程序,在我的本地计算机上运行良好,但如果我将它放在网络驱动器上并尝试从那里运行它,我会得到以下 securityException..

请求“System.Security”类型的权限.Permissions.SecurityPermission,mscorlib,版本=2.0.0.0,文化=中性,PublicKeyToken=b77a5c561934e089'失败。

有人知道为什么以及我该如何解决它吗?

谢谢!

i have a very small utilty app written in c# that works fine on my local machine but if i put it on a network drive and try to run it from there i get the following securityException..

Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.

Anyone know why and how i can fix it?

Thanks!

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

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

发布评论

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

评论(1

聊慰 2024-08-16 01:29:44

这是早期 .NET 版本的默认行为。它在 3.5 SP1 中被“修复”。 这是一个链接

如果您需要使用早期版本,唯一的解决方案是调整程序集的信任级别 (在每台使用它的电脑上)。平时没什么乐趣。

This is default behaviour for earlier .NET versions. It was 'fixed' in 3.5 SP1. Here is a link.

If you need to use an earlier version, the only solution is to adjust the trustlevel of the assembly (on each PC that uses it). Usually no fun.

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