events in windows under .net

  • Thread starter Thread starter Jeffrey
  • Start date Start date
J

Jeffrey

hello,

is someone a namespace knowing which listens all events(not only gui
events) which arise at runtime.


(i am not looking for a process- or service- namespace)

jeff
 
Jeffrey,

Are you trying to figure out when ANY event is fired by any object?
There is nothing that does that. If you want to listen in on events, you
need the specific instance of the object to listen to those events (that
object needs a reference to the method to call, through the delegate field
it stores).

Hope this helps.
 
Back
Top