vote up 10 vote down star
5

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.

flag

7 Answers

vote up 20 vote down check

How about...

using System.Diagnostics;
// get call stack
StackTrace stackTrace = new StackTrace();

// get calling method name
Console.WriteLine(stackTrace.GetFrame(1).GetMethod().Name);

From here?

link|flag
That deffo works because thats the solution we used at work...not sure why we did it though! – pzycoman Oct 5 '08 at 13:36
You can also create just the frame you need, rather than the entire stack: – Joel Coehoorn Oct 6 '08 at 13:05
new StackFrame(1).GetMethod().Name; – Joel Coehoorn Oct 6 '08 at 13:05
This isn't entirely reliable though. Let's see if this works in a comment! Try the following in a console application and you see that compiler optimsations break it. static void Main(string[] args) { CallIt(); } private static void CallIt() { Final(); } static void Final() { StackTrace trace = new StackTrace(); StackFrame frame = trace.GetFrame(1); Console.WriteLine("{0}.{1}()", frame.GetMethod().DeclaringType.FullName, frame.GetMethod().Name); } – BlackWasp Jun 1 at 15:13
Ah well, thought the comments may not like it. – BlackWasp Jun 1 at 15:14
vote up 3 vote down

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?

link|flag
vote up 0 vote down

Take a look at: http://www.codeproject.com/KB/dotnet/MethodName.aspx

Beware of using it in production code. StackFrame may not be reliable...

link|flag
vote up 11 vote down

NOTE: Just expanding on the answer provided by Firas Assad

In general, you can use the System.Diagnostics.StackTrace class to get a System.Diagnostics.StackFrame, and then use the GetMethod() method to get a System.Reflection.MethodBase object. However, there are some caveats to this approach:

  1. It represents the runtime stack -- optimizations could inline a method, and you will _**not**_ see that method in the stack trace.
  2. It will _**not**_ show any native frames, so if there's even a chance your method is being called by a native method, this will _**not**_ work, and there is in-fact no currently available way to do it.
link|flag
vote up 10 vote down

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:

new StackFrame(1).GetMethod().Name;

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 new StackFrame(1) or .GetFrame(1) don't return null, as unlikely as that possibility might seem.

See this related question: http://stackoverflow.com/questions/44153/can-you-use-reflection-to-find-the-name-of-the-currently-executing-method

link|flag
vote up 0 vote down

Maybe you are looking for something like this:

StackFrame frame = new StackFrame(1);
frame.GetMethod().Name; //Gets the current method name

MethodBase method = frame.GetMethod();
method.DeclaringType.Name //Gets the current class name
link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.