CustomTypeDescriptor.GetProperties 方法

定义

返回此类型说明符所表示对象的属性说明符的集合。

重载

GetProperties()

返回此类型说明符所表示对象的属性说明符的集合。

GetProperties(Attribute[])

返回此类型说明符所表示的对象的已筛选属性描述符的集合。

注解

方法 GetProperties 返回此类型描述符所表示对象的属性描述符的集合。 可以提供可选的属性数组来筛选返回的集合。 如果未提供父级,该方法将返回 Empty

GetProperties()

Source:
CustomTypeDescriptor.cs
Source:
CustomTypeDescriptor.cs
Source:
CustomTypeDescriptor.cs

返回此类型说明符所表示对象的属性说明符的集合。

public:
 virtual System::ComponentModel::PropertyDescriptorCollection ^ GetProperties();
public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties ();
abstract member GetProperties : unit -> System.ComponentModel.PropertyDescriptorCollection
override this.GetProperties : unit -> System.ComponentModel.PropertyDescriptorCollection
Public Overridable Function GetProperties () As PropertyDescriptorCollection

返回

一个 PropertyDescriptorCollection,包含此类型说明符所表示的对象的属性说明。 默认值为 Empty

实现

注解

如果将父自定义类型描述符传递到 CustomTypeDescriptor 构造函数中,该方法 GetProperties 将调用父级的相应方法。

另请参阅

适用于

GetProperties(Attribute[])

Source:
CustomTypeDescriptor.cs
Source:
CustomTypeDescriptor.cs
Source:
CustomTypeDescriptor.cs

返回此类型说明符所表示的对象的已筛选属性描述符的集合。

public:
 virtual System::ComponentModel::PropertyDescriptorCollection ^ GetProperties(cli::array <Attribute ^> ^ attributes);
public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties (Attribute[] attributes);
public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties (Attribute[]? attributes);
abstract member GetProperties : Attribute[] -> System.ComponentModel.PropertyDescriptorCollection
override this.GetProperties : Attribute[] -> System.ComponentModel.PropertyDescriptorCollection
Public Overridable Function GetProperties (attributes As Attribute()) As PropertyDescriptorCollection

参数

attributes
Attribute[]

用作筛选器的特性数组。 它可以是 null

返回

一个 PropertyDescriptorCollection,包含此类型说明符所表示的对象的属性说明。 默认值为 Empty

实现

注解

可以使用 attributes 参数筛选返回的集合。 有关筛选规则,请参阅 GetProperties

如果将父自定义类型描述符传递到 CustomTypeDescriptor 构造函数中,该方法 GetProperties 将调用父级的相应方法。

另请参阅

适用于