PersonalizableAttribute.GetPersonalizableProperties(Type) 方法

定义

返回特定属性的 PropertyInfo 对象的集合,这些属性与此参数类型匹配并标记为可个性化。

public:
 static System::Collections::ICollection ^ GetPersonalizableProperties(Type ^ type);
public static System.Collections.ICollection GetPersonalizableProperties (Type type);
static member GetPersonalizableProperties : Type -> System.Collections.ICollection
Public Shared Function GetPersonalizableProperties (type As Type) As ICollection

参数

type
Type

要在其上查找 Personalizable 属性的类型。

返回

可个性化属性的 ICollection

例外

该类型上的公共属性被标记为可个性化,但为只读的。

注解

此方法返回一个集合,其中包含零个或多个 PropertyInfo 对象,集合中指定了标记为可个性化设置的类型的每个属性的集合中的一个对象,其中 IsPersonalizable 等于 true

参数 type 是要 Personalizable 查找属性的类型。 例如,将传入 "typeof(MyWebPart)" 以获取 类上的PersonalizableMyWebPart属性。

适用于