PropertyBuilder.GetAccessors(Boolean) 方法

定义

返回此属性上的公共和非公共 getset 访问器的数组。

public:
 override cli::array <System::Reflection::MethodInfo ^> ^ GetAccessors(bool nonPublic);
public override System.Reflection.MethodInfo[] GetAccessors (bool nonPublic);
override this.GetAccessors : bool -> System.Reflection.MethodInfo[]
Public Overrides Function GetAccessors (nonPublic As Boolean) As MethodInfo()

参数

nonPublic
Boolean

指示非公共方法是否应在 MethodInfo 数组中返回。 如果要包括非公共方法,则为 true;否则为 false

返回

MethodInfo 类型的数组,它包含匹配的公共或非公共访问器,或者如果在此属性上不存在匹配访问器,则为空数组。

例外

不支持此方法。

注解

若要获取属性的访问器,请使用 Type.GetType 或 Assembly.GetType 对属性的父类型进行反射,从类型中检索 Reflection 属性对象,然后调用 PropertyInfo.GetAccessors。

适用于