Tagged Questions
36
votes
9answers
8k views
How can I find the method that called the current method?
When logging in C#, how can I learn the name of the method that called the current method? I know all about System.Reflection.MethodBase.GetCurrentMethod(), but I want to go one step beneath this in ...
4
votes
2answers
132 views
Is it possible to get actual type from stack trace?
I'm writing an ExceptionFactory class, using System.Diagnostics.StackTrace.
var trace = new StackTrace(1, true);
var frames = trace.GetFrames();
var method = frames[0].GetMethod();
Now, for ...
3
votes
2answers
992 views
How do I get the executing object for a stackframe?
When using reflection it is possible to obtain the call stack (apart from that it can be a crude approximation due to JIT optimizations) using System.Diagnostics.StackTrace and examine the StackFrame ...
2
votes
5answers
114 views
If I throw an exception in a getter of a property, can I obtain the name of the property in a catch block?
If I throw an exception from a getter of a property, is it possible to obtain the name of
the property in the catch block where I have called that property -like using reflection or
reading the ...
2
votes
3answers
113 views
Getting generic arguments from a class in the stack
I have a generic class called Repository. This class has a function that "calls itself" by initializing a new instance of the Repository class with a different generic argument. This "recursion" can ...
2
votes
1answer
1k views
How to get parameter value from StackTrace
From within a method call I need to "jump" three layers up the stack and retrieve the type and value of the parameters passed to that method.
Getting the parameter type is easy but I couldn't find a ...
2
votes
1answer
379 views
StackTrace filename unknown
Something strange is happening in my code where I'm using a StackTrace. It's almost as if the debug info is not being loaded... but I'm running this on the DEBUG build.The .pdb files are definitelly ...
1
vote
2answers
74 views
Tracing a previous method call in PHP
Use Case: I'm trying to create a diagnostic test for my unit testing framework that runs each test case and then returns a list of public methods which have not yet been covered by the test case. The ...
1
vote
3answers
676 views
C# Reflection StackTrace get value
I'm making pretty heavy use of reflection in my current project to greatly simplify communication between my controllers and the wcf services. What I want to do now is to obtain a value from the ...
0
votes
1answer
122 views
how to get proper stack trace instead of reflection stack trace?
I have a big red5 project and it seems that at some point a function is being executed. I tried finding in my code how come this specific function is being executed at that point and I couldn't find ...