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.
 

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