How to trap calls to MSCOREE?

  • Thread starter Thread starter Guest
  • Start date Start date
pSm said:
Hello All,
How do we trap all calls to load MSCOREE.dll ?
Regards,

Not sure what you are after, MSCOREE is loaded before you (managed) code is
actually run.

Willy.
 
Hi Willy,
I know, is there an interrupt or something that I can program to grab
calls to load MSCOREE ? Is there some registry entry that can help accomplish
this ? I am trying to write a monitoring application around this.
Regards,
pSm
 
pSm said:
Hi Willy,
I know, is there an interrupt or something that I can program to grab
calls to load MSCOREE ? Is there some registry entry that can help
accomplish
this ? I am trying to write a monitoring application around this.
Regards,
pSm


Unless you are hosting the CLR yourself, the answer is NO, MSCOREE is loaded
before your code runs.

Willy.
 
Willy,
I am sorry if I was not clear with what I was trying to do. MSCOREE gets
loaded into a hosting process, which will be separate for a Windows app or a
ASP.Net process. Let's say I have a App called MonApp - which will check
which OTHER processes have loaded MSCOREE - is that do-able ? I would believe
so ;-)
-pSm
 
Back
Top