I am trying to make sure my ASP.Net library will work under Medium Trust. I’m having problems however in that I need to disable a bit of code if it is being run under medium trust.
How do I determine from C# if the current application is medium trust?
Specifically, I’m trying to read the customErrors section from web.config and I’m getting security errors
This article here describes a mechanism to determine the trust level:
Here is the code just in case the link dies:
I just tested it in an ASP.NET MVC3 application running at Medium and then Full trust and it does what it says on the tin.