ASP.NET中實現(xiàn)獲取調用方法名
來源:易賢網(wǎng) 閱讀:1159 次 日期:2015-01-14 15:15:47
溫馨提示:易賢網(wǎng)小編為您整理了“ASP.NET中實現(xiàn)獲取調用方法名”,方便廣大網(wǎng)友查閱!

需要添加相應的命名空間:

復制代碼 代碼如下:

using System;

using System.Diagnostics;

using System.Reflection;

如果僅是獲取當前方法名,可以使用如下代碼:

復制代碼 代碼如下:

public static void WriteSysLog(int level, string content)

{

MethodBase mb = MethodBase.GetCurrentMethod();

string systemModule = Environment.NewLine;

systemModule += "模塊名:" + mb.Module.ToString() + Environment.NewLine;

systemModule += "命名空間名:" + mb.ReflectedType.Namespace + Environment.NewLine;

//完全限定名,包括命名空間

systemModule += "類名:" + mb.ReflectedType.FullName + Environment.NewLine;

systemModule += "方法名:" + mb.Name;

Console.WriteLine("LogDate: {0}{1}Level: {2}{1}systemModule: {3}{1}content: {4}", DateTime.Now, Environment.NewLine, level, systemModule, content);

Console.WriteLine();

}

但一般情況下是獲取此記錄日志方法的調用方,因此需要使用下面的代碼:(此方法僅為演示)

代碼如下:

public static void WriteSysLog(string content)

{

const int level = 1000;

StackTrace ss = new StackTrace(true);

//index:0為本身的方法;1為調用方法;2為其上上層,依次類推

MethodBase mb = ss.GetFrame(1).GetMethod();

StackFrame[] sfs = ss.GetFrames();

string systemModule = Environment.NewLine;

systemModule += "模塊名:" + mb.Module.ToString() + Environment.NewLine;

systemModule += "命名空間名:" + mb.DeclaringType.Namespace + Environment.NewLine;

//僅有類名

systemModule += "類名:" + mb.DeclaringType.Name + Environment.NewLine;

systemModule += "方法名:" + mb.Name;

Console.WriteLine("LogDate: {0}{1}Level: {2}{1}systemModule: {3}{1}content: {4}", DateTime.Now, Environment.NewLine, level, systemModule, content);

Console.WriteLine();

}

對于這一點兒,感覺有意思的是Main的調用方

代碼如下:

System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)

通過

代碼如下:

StackTrace ss = new StackTrace(true);

StackFrame[] sfs = ss.GetFrames();

可以得知.NET程序的執(zhí)行順序:

代碼如下:

System.Threading.ThreadHelper.ThreadStart()

System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()

System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)

然后進入方法Main中。

另外,從 MethodBase 類 還可以獲取很多其他屬性,可以自行定位到System.Reflection.MethodBase 查看。

使用反射可以遍歷獲得類的所有屬性名,方法名,成員名,其中一個有趣的小例子:通過反射將變量值轉為變量名本身。

更多信息請查看IT技術專欄

更多信息請查看網(wǎng)絡編程
易賢網(wǎng)手機網(wǎng)站地址:ASP.NET中實現(xiàn)獲取調用方法名
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點

版權所有:易賢網(wǎng)