Private Dll
Hi, sorry for my poor english, its there any way to make a DLL that only work whit my App, I mean, not to share te classes in the dll with other App more than the one I decide?.
Thanks in advance.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Daniel Torres 0Posted Jul 21, 2005, 8:34 PM
Mahesh ChandPosted Jul 21, 2005, 3:33 PM
provide an access key or something. When you create an instance of the class, it would require a
key in construction to authenticate the client. Since your application will only know they key, no body else
would be able to call your DLL.
FYI: In .NET there are two types of DLLs - Private and shared.
A private dll is used by one application only. If another application wants to use that dll, it will have
its own copy of that dll. So if there are 10 applications wants to use same dll, there will be 10 copies
of dlls.
A public dll is a single copy of dll shared by multiple application by putting dll into GAC or some
common place.
Daniel Torres 0Posted Jul 21, 2005, 2:25 PM
shivendraPosted Jul 20, 2005, 2:58 AM
I need It.I am Working In a Project Where It Is REquired