Restricting access to routines

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

We are working with customers and partners developing VB.NET applications.

We want to allow access to some of our methods in assemeblies but not others
especially those used for Licensing , Passwords and Encryption.

Question how do you restrict access to certain routines ?
 
If your asssmblies are strongly-named, you can use
StrongNameIdentityPermission.
 
StrongNameIdentityPermission won't actually prevent anyone from calling
methods in your assembly. Search for postings in
microsoft.public.dotnet.security on the subject to see why.
 
Back
Top