gpt4 book ai didi

c# - PostSharp:使用 OnMethodInvocationAspect 时删除了自定义属性

转载 作者:可可西里 更新时间:2023-11-01 08:41:47 26 4
gpt4 key购买 nike

我有这样的方面:

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());
}

关于c# - PostSharp:使用 OnMethodInvocationAspect 时删除了自定义属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1539582/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com