0

我正在做一个审计工作,并试图使用属性将参数标记为应记录在审计中以获取更多信息的方法。但是,无论出于何种原因,我似乎无法检查该属性是否存在。

我的代码:

  [Audit(AuditType.GetReport)]
  public Stream GetReportStream([AuditParameter] Report report)
  {
     ...
  }

  [AttributeUsage(AttributeTargets.Parameter)]
  public class AuditParameterAttribute : Attribute
  {
  }

而且,在我试图获取它的拦截器内部:

foreach (ParameterInfo param in invocation.Method.GetParameters ())
{
   var atts = CustomAttributeData.GetCustomAttributes (param);
   if (param.IsDefined (typeof(AuditParameterAttribute), false))
   {
      attributes.Add (param.Name, invocation.Arguments[param.Position].ToString ());
   }
}

我开始添加一些额外的调用来尝试让某些东西起作用;这就是为什么额外var atts的东西在那里。该invocation变量包含有关所调用方法的信息,并且我能够从中获取表示参数的 ParameterInfo 对象。但是,无论我尝试了什么,我都无法从中获得任何自定义属性。

我在这里做错了什么?

4

1 回答 1

2

知道了。原来这是我使用 Castle 缺乏经验的问题。我意识到它正在通过基于被调用类接口的代理,该类没有我正在寻找的属性。因此,将我的代码更改为:

foreach (ParameterInfo param in invocation.MethodInvocationTarget.GetParameters ())
{
   if (param.IsDefined (typeof(AuditParameterAttribute), false))
   {
      attributes.Add (param.Name, invocation.Arguments[param.Position].ToString ());
   }
}

使用 MethodInvocationTarget 而不是 Method 解决了这个问题。

于 2012-04-18T18:17:22.847 回答