我正在尝试使用GetCustomAttributes()
来获取在属性上定义的属性。问题是该属性是一个被覆盖的属性,我无法弄清楚如何从表达式中提取被覆盖的属性。我只能弄清楚如何获得基类的。
这是一些代码
public class MyAttribute : Attribute
{
//...
}
public abstract class Text
{
public abstract string Content {get; set;}
}
public class Abstract : Text
{
[MyAttribute("Some Info")]
public override string Content {get; set;}
}
现在我正试图MyAttribute
摆脱抽象类。但我需要通过Expression
. 这是我一直在使用的:
Expression<Func<Abstract, string>> expression = c => c.Content;
Expression exp = expression.Body;
MemberInfo memberType = (exp as MemberExpression).Member;
var attrs = Attribute.GetCustomAttributes(memberType, true);
不幸的是atts
,最终是空的。问题是menberType
最终是 forText.Content
而不是Abstract.Content
类。所以当我得到属性时,它什么也不返回。