网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 ASP.NET中实现获取调用方法名
内容
    本文实例讲述了ASP.NET中实现获取调用方法名的技巧。分享给大家供大家参考。具体实现方法如下:
    在写记录日志功能时,需要记录日志调用方所在的模块名、命名空间名、类名以及方法名,想到使用的是反射(涉及到反射请注意性能),但具体是哪一块儿还不了解,于是搜索,整理如下:
    需要添加相应的命名空间:
    复制代码 代码如下: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程序的执行顺序:
    复制代码 代码如下: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 查看。
    使用反射可以遍历获得类的所有属性名,方法名,成员名,其中一个有趣的小例子:通过反射将变量值转为变量名本身。
    希望本文所述对大家的asp.net程序设计有所帮助。
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/14 2:09:03