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 the stack trace. I've considered parsing the stack trace, but I am hoping to find a cleaner more explicit way, something like Assembly.GetCallingAssembly() but for methods.
|
5
|
|
|
|
|
|
How about...
From here? |
||||||||||
|
|
|
Note that doing so will be unreliable in release code, due to optimization. Additionally, running the app in sandbox mode (network share) won't allow you to grab the stack frame at all. Have you considered AOP, like PostSharp, which instead of being called from your code, modifies your code, and thus knows where it is at all times? |
||
|
|
|
|
Take a look at: http://www.codeproject.com/KB/dotnet/MethodName.aspx Beware of using it in production code. StackFrame may not be reliable... |
||
|
|
|
|
NOTE: Just expanding on the answer provided by Firas Assad In general, you can use the
|
||
|
|
|
|
We can improve on Mr Assad's code (the current accepted answer) just a little bit by instantiating only the frame we actually need rather than the entire stack:
This should perform a little better. However, it still has the same caveats that Alex Lyman pointed out. Also, you might want to check to be sure that See this related question: http://stackoverflow.com/questions/44153/can-you-use-reflection-to-find-the-name-of-the-currently-executing-method |
|||
|
|
|
|
Maybe you are looking for something like this:
|
||
|
|
|
|
Another approach I have used is to add a parameter to the method in question. For example, instead of void Foo(), use void Foo(string context). Then pass in some unique string that indicates the calling context. If you only need the caller/context for development, you can remove the param before shipping. |
||
|
|
