module security

  • Thread starter Thread starter Ahmet AKGUN
  • Start date Start date
A

Ahmet AKGUN

Hi all,

I have a mainform.exe that calls some functions and some forms in different
classlibrary dlls.
I dont want this dll's to be used by other programs except mine on client
installation.

I mean client must not add my .net dll as referance to a custom project and
use it.
can anybody help me with how to do this ?

regards.
Ahmet AKGUN
 
Ahmet, how about just marking your methods as private or protected? That
way, even if they do add your assembly they will not be able to call any of
the methods.

You can also find a lot of articles out on the net by searching for Code
access Security on google.
 
Back
Top