ArrayConverter.GetProperties 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取由值参数指定的数组类型的属性集合。
public:
override System::ComponentModel::PropertyDescriptorCollection ^ GetProperties(System::ComponentModel::ITypeDescriptorContext ^ context, System::Object ^ value, cli::array <Attribute ^> ^ attributes);
public override System.ComponentModel.PropertyDescriptorCollection GetProperties (System.ComponentModel.ITypeDescriptorContext context, object value, Attribute[] attributes);
public override System.ComponentModel.PropertyDescriptorCollection? GetProperties (System.ComponentModel.ITypeDescriptorContext? context, object? value, Attribute[]? attributes);
override this.GetProperties : System.ComponentModel.ITypeDescriptorContext * obj * Attribute[] -> System.ComponentModel.PropertyDescriptorCollection
Public Overrides Function GetProperties (context As ITypeDescriptorContext, value As Object, attributes As Attribute()) As PropertyDescriptorCollection
参数
- context
- ITypeDescriptorContext
一个 ITypeDescriptorContext,用于提供格式上下文。
返回
一个具有为数组公开的属性的 PropertyDescriptorCollection;如果没有属性,则为 null
。
注解
context
参数可用于提取有关从中调用该转换器的环境的附加信息。 此参数可能为 null
,因此总是需要检查。 同样,上下文对象的属性可以返回 null
。
属性数组将用于筛选数组。 参数attributes
可以指定 和 Attribute 对象的混合Type。 筛选由以下规则定义:
如果属性没有 Attribute 同一类的 ,则返回的数组中不会包含该属性。
如果该属性是 的 Attribute实例,则属性必须是完全匹配的,否则它将不会包含在返回的数组中。
如果指定了 Attribute 实例并且它是默认属性,则即使属性中没有 实例 Attribute ,该实例也会包含在返回的数组中。