Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to get parameters' values for each frame in call stack in .NET

I'm talking about managed .NET code. If we run any program and attach VS to it we can see parameters' values for each method in call stack. I'd like to create a logging solution which will log all parameters' values for each method in call stack. Actually I need this info in case an exception occurs.

I know it's possible with profiling API. But I wonder is it possible with only managed code?

UPDATE: Ok, probably with pure .NET it's impossible. Then may be with some kind of unmanaged code... the point is to do this from within application itself. An application in case of an exception could call some library (may be unmanaged) which returns info about methods' values in call stack. Just thoughts...

like image 710
Shrike Avatar asked May 04 '09 10:05

Shrike


1 Answers

Parameters values aren't stored in StackFrame instance. In fact, they aren't recorded/logged at all, unless you choose to do it explicitly.

One obvious way to log theses values is to use AOP. It would certainly imply a cost, but in conjunction with a logging framework and the right log level, it may be an alternative. You could also choose to instrument only some types/methods in your basecode, where exceptions are more likely to be thrown. I would probably choose Postsharp for its static weaving capabilities, to emit log calls.

Anyway, it's far from being an ideal solution, but I'm afraid you won't have many options if you're stuck in the managed world.

like image 160
Romain Verdier Avatar answered Nov 15 '22 21:11

Romain Verdier