Why am I getting a System.Security.Permissions.Sec

2019-04-16 21:01发布

I am trying to develop a text-to-speech editor in .NET 3.5 using C#. I encountered the following exception: System.Security.Permissions.SecurityPermission.

How to handle it?

1条回答
再贱就再见
2楼-- · 2019-04-16 21:37

The system is saying that there has been an attempt to do something that is not allowed according to the current policy. More information is needed to give good advice here:

1) What is the full text of the exception message? There are a dozen or so situations that can cause a SecurityPermission so this is important. Specifically, there is a flag field that indicates the exact nature of the security violation.

2) What is the environment? Are the files stored locally, or on a network share? Apps run from a network share have always been partial-trust prior to 3.5 SP1. Do you have .NET 3.5 SP1 installed?

查看更多
登录 后发表回答