up vote 1 down vote favorite
share [g+] share [fb]

This is related to the this question and the answer maybe the same but I'll ask anyways.

I understand that we can start managed executables from the network from .NET 3.5 SP1 but what about assemblies loaded from inside the executable? Does the same thing apply?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You have been able to load Assemblies from the network at leasst from .NET 2.0. I have used this on a previous project. The only thing to watch is the size of the assembly and the number and size of the dependancies that it is loading.

If you are using a seperate AppDomain, then you will need to take special consideration of the dependancies.

link|improve this answer
feedback

My understanding is yes, you're trying to load an untrusted module into your local app domain.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.