Assembly Security

  • Thread starter Thread starter Philip Carnstam
  • Start date Start date
P

Philip Carnstam

Hi,

I am building an application where I want users to be able to build their
own assemblies that they can implement and share in the application.
The problem is that I want to add security to these assemblies. I want to
allow usage of my assemblies, the System assembly and the System.Math
assembly only, nothing else.
The assemblies inherit the Op class in my application if that helps.

Thanks,
Philip
 
Hello

System.Math is not an assembly, it is a class and its implementation lies in
the mscorlib assembly. I don't think there is a way to restrict access to a
specific class or method in an assembly, unless the developer of the
assembly made this possible using code access security.

Best regards,
Sherif
 
Back
Top