获取参数名称

dan*_*lex 4 postsharp

如何获得方法的参数NAMES.这些示例显示了如何获取参数的,而不是NAMES.我想看到parma = 99,parmb = 1.不仅仅是99,1.

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Diagnostics;
    using PostSharp.Aspects;

    namespace GettingParmNames
    {
        public class Program
        {
           static void Main(string[] args)
           {
               Foo myfoo = new Foo();
               int sum = myfoo.DoA(99, 1);
               Console.WriteLine(sum.ToString());

               Console.ReadKey();
           }
       }

    public class Foo
    {
        [ExceptionAspect]
        public int DoA(int parma, int parmb)
        {
            int retVal;
            try
            {
                retVal = parma + parmb;
                if (parma == 99)
                {
                    throw new Exception("Fake Exception");
                }

            }
            catch (Exception ex)
            {
                retVal = -1;
                throw new Exception("There was a problem");
            }

            return retVal;
        }
    }

    [Serializable]
    public class ExceptionAspect : OnExceptionAspect
    {
        public override void OnException(MethodExecutionArgs args)
        {
            string parameterValues = "";

            foreach (object arg in args.Arguments)
            {
                if (parameterValues.Length > 0)
                {
                    parameterValues += ", ";
                }

                if (arg != null)
                {
                    parameterValues += arg.ToString();
                }
                else
                {
                    parameterValues += "null";
                }
            }

            Console.WriteLine("Exception {0} in {1}.{2} invoked with arguments {3}", args.Exception.GetType().Name, args.Method.DeclaringType.FullName, args.Method.Name, parameterValues );
        }
    }

}
Run Code Online (Sandbox Code Playgroud)

Ale*_*exD 5

您可以OnException通过调用方法访问方法中的方法参数信息args.Method.GetParameters().但是出于性能原因通常最好在编译期间初始化数据 - 在CompileTimeInitialize方法覆盖中.

[Serializable]
public class ExceptionAspect : OnExceptionAspect
{
    private string[] parameterNames;

    public override void CompileTimeInitialize(MethodBase method, AspectInfo aspectInfo)
    {
        parameterNames = method.GetParameters().Select(p => p.Name).ToArray();
    }

    public override void OnException(MethodExecutionArgs args)
    {
        StringBuilder parameterValues = new StringBuilder();

        for (int i = 0; i < args.Arguments.Count; i++)
        {
            if ( parameterValues.Length > 0 )
            {
                parameterValues.Append(", ");
            }

            parameterValues.AppendFormat(
                "{0} = {1}", parameterNames[i], args.Arguments[i] ?? "null");
        }

        // ...
    }
Run Code Online (Sandbox Code Playgroud)