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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top