Assembly Loading and Authorization- November 12, 2007 CLR does not do anything special regarding authorization during assembly loading. It will try to access the file under the current user. However, if an assembly is already loaded, next time when the assembly is requested, CLR will return the assembly from the cache without hitting the file. When the application impersonates a user, things get a little bit interesting. Sometimes the impersonated user does not have access to the assembly. Sometimes the impersonated user has read access to the...http://blogs.msdn.com/junfeng/archive/2007/11/12/assembly-loading-and-authorization.aspx |