从网络位置启动 C# 应用程序时出现安全异常
我有一个用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是早期 .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.