我正在尝试列出 Item 可能包含的可能类型。但是我陷入困境,我无法调用Item.GetType()来遍历其属性,因为这只会返回它已经包含的类型的属性。
我已经尝试了 TypeDescriptor.GetProperties(...),但是Attributes容器只包含一个 XmlElementAttribute 的实例,它是应用于该属性的最后一个实例(WindowTemplate in这个案例)
这一定是微不足道的,但我找不到任何解决我在线问题的方法。
[System.Xml.Serialization.XmlElementAttribute("ChildTemplate", typeof(ChildTmpl), Order = 1)]
[System.Xml.Serialization.XmlElementAttribute("WindowTmeplate", typeof(WindowTmpl), Order = 1)]
public object Item
{
get
{
return this.itemField;
}
set
{
this.itemField = value;
}
}
答案 0 :(得分:7)
您无法使用TypeDescriptor,因为System.ComponentModel始终会折叠属性。您必须使用PropertyInfo
和Attribute.GetCustomAttributes(property, attributeType)
:
var property = typeof (Program).GetProperty("Item");
Attribute[] attribs = Attribute.GetCustomAttributes(
property, typeof (XmlElementAttribute));
如果数组更容易,那么实际上将成为XmlElementAttribute[]
:
XmlElementAttribute[] attribs = (XmlElementAttribute[])
Attribute.GetCustomAttributes(property, typeof (XmlElementAttribute));