c# – PostSharp:使用OnMethodInvocationAspect时,将删除自定义属性

前端之家收集整理的这篇文章主要介绍了c# – PostSharp:使用OnMethodInvocationAspect时,将删除自定义属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一些这样的方面:
public class MyAttribute : OnMethodInvocationAspect
{
    public int Offset { get; internal set; }

    public MyAttribute(int offset)
    {
        this.Offset = offset;
    }

    public override void OnInvocation(MethodInvocationEventArgs eventArgs)
    {
         //do some stuff
    }
}

现在我正在上课,而且我添加了我的属性

class MyClass
{
    [MyAttribute(0x10)]
    public int MyProp { get; set; }
}

工程一切正常然而现在我想用反射来得到我的补偿;当我做的

typeof(MyClass).GetProperty("MyProp").GetCustomAttributes(true);

它什么也没有返回如何访问我的原始偏移值(属性属性)?

解决方法

啊,我这样修复了:

首先在属性定义中添加一个属性,如:

[MulticastAttributeUsage(MulticastTargets.Method,PersistMetaData=true)]
public class MyAttribute : OnMethodInvocationAspect

然后我可以调用我的属性的get_方法获取我想要的数据:

foreach (PropertyInfo pi in typeof(T).GetProperties())
        {
            var entityAttribute = (MyAttribute)(typeof(T).GetMethod("get_" + pi.Name).GetCustomAttributes(typeof(MyAttribute),true).FirstOrDefault());
        }
原文链接:https://www.f2er.com/csharp/97371.html

猜你在找的C#相关文章