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
 
Back
Top