Tagged Questions
5
votes
3answers
404 views
How can I prevent unauthorized code from accessing my assembly in .NET 2.0?
In .NET 1.x, you could use the StrongNameIdentityPermissionAttribute on your assembly to ensure that only code signed by you could access your assembly. According to the MSDN documentation,
In ...