Tagged Questions

3
votes
3answers
178 views

implement callback over ApplicationDomain-boundary in .net

I load a dll dynamically using an Applicationdomain to unload when nessesary. What i cant get to work is a callback-method from the created Appdomain if the task in the loaded dll terminates itself. ...
2
votes
1answer
39 views

Loading An Assembly Into An Application Domain With Lower Security

I'm trying to create a Sandbox App Domain that has read only access to the file system. The code I have written to do this is var ps = new PermissionSet(PermissionState.None); ...
2
votes
1answer
123 views

What are the different “components” that make up Processes, AppDomains, Contexts, and Threads (and what are their relationships)?

I am realy hoping to get a definitive answer to this. I have a previous question where I asked "What is a thread (really)?" I got some really good answers and my takeaway from this was that a Thread ...
0
votes
1answer
60 views

How can I have an application stack multiple processes into the same application domain?

So here's an example of what I'm wanting to do: Run test.exe, new Windows process is created, new CLR Application Domain is created, new CLR process is created. Run test.exe, new Windows process is ...
0
votes
3answers
417 views

application domains and threads

A quote from MSDN: http://msdn.microsoft.com/en-us/library/6kac2kdh.aspx One or more managed threads (represented by System.Threading.Thread) can run in one or any number of application ...