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.

link|improve this question

Thanks for asking this question, this has helped me today! =) – Will Marcouiller Dec 8 '11 at 16:49
If you are using .net 4.5 beta +, you can use CallerInformation API. – Rohit Sharma Mar 11 at 7:17
feedback

10 Answers

up vote 41 down vote accepted

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|improve this answer
That deffo works because thats the solution we used at work...not sure why we did it though! – Dot Net Pro UK Oct 5 '08 at 13:36
1  
You can also create just the frame you need, rather than the entire stack: – Joel Coehoorn Oct 6 '08 at 13:05
4  
new StackFrame(1).GetMethod().Name; – Joel Coehoorn Oct 6 '08 at 13:05
1  
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 '09 at 15:13
Ah well, thought the comments may not like it. – BlackWasp Jun 1 '09 at 15:14
show 1 more comment
feedback

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|improve this answer
1  
In debug mode with optimizations turned off, would you be able to see what the method is in the stack trace? – AttackingHobo Jan 21 '11 at 3:36
@AttackingHobo: Yes--unless the method is inlined (optimizations on) or a native frame, you'll see it. – Alex Lyman Jan 25 '11 at 19:19
feedback

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|improve this answer
feedback

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|improve this answer
feedback
/// <summary>
/// Returns the call that occurred just before the "GetCallingMethod".
/// </summary>
public static string GetCallingMethod()
{
   return GetCallingMethod("GetCallingMethod");
}

/// <summary>
/// Returns the call that occurred just before the the method specified.
/// </summary>
/// <param name="MethodAfter">The named method to see what happened just before it was called. (case sensitive)</param>
/// <returns>The method name.</returns>
public static string GetCallingMethod(string MethodAfter)
{
   string str = "";
   try
   {
      StackTrace st = new StackTrace();
      StackFrame[] frames = st.GetFrames();
      for (int i = 0; i < st.FrameCount - 1; i++)
      {
         if (frames[i].GetMethod().Name.Equals(MethodAfter))
         {
            if (!frames[i + 1].GetMethod().Name.Equals(MethodAfter)) // ignores overloaded methods.
            {
               str = frames[i + 1].GetMethod().ReflectedType.FullName + "." + frames[i + 1].GetMethod().Name;
               break;
            }
         }
      }
   }
   catch (Exception) { ; }
   return str;
}
link|improve this answer
oops, I should have explained the "MethodAfter" param a little better. So if you are calling this method in a "log" type function, you'll want to get the method just after the "log" function. so you would call GetCallingMethod("log"). -Cheers – Flanders May 28 '10 at 20:10
feedback

In C# 5 you can get that information using caller info:

public string SendError(string Message, [CallerMemberName] string callerName = "") 
{ 
    Console.WriteLine(callerName + "called me."); 
} 

You can also get the [CallerFilePath] and [CallerLineNumber].

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback
private static MethodBase GetCallingMethod()
{
  return new StackFrame(2, false).GetMethod();
}

private static Type GetCallingType()
{
  return new StackFrame(2, false).GetMethod().DeclaringType;
}

A fantastic class is here: http://www.csharp411.com/c-get-calling-method/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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