从温莎城堡拦截器访问方法的自定义属性

发布于 2024-08-26 12:46:56 字数 495 浏览 9 评论 0原文

我正在尝试访问应用于城堡拦截器中的方法的自定义属性,例如:

[MyCustomAttribute(SomeParam = "attributeValue")]
public virtual MyEntity Entity { get; set; }

使用以下代码:

internal class MyInterceptor : IInterceptor
{
    public void Intercept(IInvocation invocation)
    {
        if (invocation.Method.GetCustomAttributes(typeof(MyCustomAttribute), true) != null)
        {
            //Do something
        }
    }
}

调用方法时拦截器正常触发,但此代码不返回自定义属性。我怎样才能实现这个目标?

I am trying to access a custom attribute applied to a method within a castle interceptor, e.g.:

[MyCustomAttribute(SomeParam = "attributeValue")]
public virtual MyEntity Entity { get; set; }

using the following code:

internal class MyInterceptor : IInterceptor
{
    public void Intercept(IInvocation invocation)
    {
        if (invocation.Method.GetCustomAttributes(typeof(MyCustomAttribute), true) != null)
        {
            //Do something
        }
    }
}

The interceptor is firing OK when the method is called but this code does not return the custom attribute. How can I achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

葮薆情 2024-09-02 12:46:56

尝试 Attribute.GetCustomAttribute(...) 静态方法。这很奇怪,但这两种方法有时会由于某些奇怪的原因返回不同的结果。

Try Attribute.GetCustomAttribute(...) static method for this. It's bizarre but these two methods return different results sometimes for some strange reason.

醉城メ夜风 2024-09-02 12:46:56

尝试

private static Attribute getMyCustomAttribute(IInvocation invocation)
{
   var methodInfo = invocation.MethodInvocationTarget;
   if (methodInfo == null)
   {
      methodInfo = invocation.Method;
   }
   return Attribute.GetCustomAttribute(methodInfo, typeof(MyCustomAttribute), true);
}

Try

private static Attribute getMyCustomAttribute(IInvocation invocation)
{
   var methodInfo = invocation.MethodInvocationTarget;
   if (methodInfo == null)
   {
      methodInfo = invocation.Method;
   }
   return Attribute.GetCustomAttribute(methodInfo, typeof(MyCustomAttribute), true);
}
廻憶裏菂餘溫 2024-09-02 12:46:56

我想我已经弄清楚了 - 这是因为属性和方法之间的差异。触发拦截器的是get_方法,而这个并没有用父属性的属性来修饰。

I think I've figured it out - it is because of the difference between the property and the method. It is the get_ method that triggers the interceptor, and this is not decorated with the attribute of the parent property.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文