AspNetHostingPermission and HttpModule
Hi guys,
I can not understand why HttpModules usually have
AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)
applied. As I understand, methods of the HttpModule will always be called by ASP.NET code(System.Web.HttpApplication) which is located in GAC, hance having FullTrust permission set.
|