Catch events by dynamically adding Handler using Code Generation
I need to hook up all events in an application and trace all information (raising, arguments, etc.).
I found this at Stackoverflow: Tracing all events in VB.NET
However, I need a solution that not only writes the called event to console, but calls TraceVerbose with parameters showing sender and eventargs.
I am still working on getting to know dynamic code generation and IL, so I don't have a clue about how t开发者_如何学编程o get the code to call a trace method with parameters from the event.
Can anyone tell me how to do this (in VB.NET)?
精彩评论