如何获取属于自定义属性的属性?

时间:2009-05-27 17:01:39

标签: c# reflection attributes

我需要在自定义属性中找到应用自定义属性的属性的类型。

例如:

[MyAttribute]
string MyProperty{get;set;}

鉴于MyAttribute的实例,我怎样才能获得MyProperty的Type描述符?

换句话说,我正在寻找System.Type.GetCustomAttributes()

的反面

2 个答案:

答案 0 :(得分:17)

属性本身对用它装饰的对象一无所知。但是,您可以在重新检索属性时注入此信息 在某些时候,您必须使用类似于以下的代码检索属性。

PropertyInfo propertyInfo = typeof(MyType).GetProperty("MyProperty");

Object[] attribute = propertyInfo.GetCustomAttributes(typeof(MyAttribute), true);

if (attribute.Length > 0)
{
    MyAttribute myAttribute = (MyAttribute) attributes[0];

    // Inject the type of the property.
    myAttribute.PropertyType = propertyInfo.PropertyType;

    // Or inject the complete property info.
    myAttribute.PropertyInfo = propertyInfo;
}

答案 1 :(得分:4)

自定义属性对属性元素一无所知,所以除非你枚举系统中的所有类型并检查它们是否包含这样的属性,否则我认为你不想做什么。