Application Domain, AppDomain

  • Thread starter Thread starter tobigu
  • Start date Start date
T

tobigu

Hi,

I'd like to implement a taskmanager in C#! It shall be able to show me
all running processes AND application domains. And thats the problem:
How is is possible to get all running application domains (if yes
how)? And is possible to attach to these AppDomains to kill them for
example? Right now I'm working with the C# class "Process".

thanks
Tobias
 
Tobias,
How is is possible to get all running application domains (if yes
how)? And is possible to attach to these AppDomains to kill them for
example? Right now I'm working with the C# class "Process".

You should check out the ICorPublish COM interfaces in the .NET
framework SDK (include\corpub.idl).

For an example of how to use these from managed code, see

http://staff.develop.com/woodring/dotnet/#corpub



Mattias
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top