System.Type.GetPropertyImpl 方法

方法描述

当在派生类中重写时,使用指定的绑定约束搜索其参数与指定的参数类型和修饰符匹配的指定属性。

语法定义(C# System.Type.GetPropertyImpl 方法 的用法)

protected abstract PropertyInfo GetPropertyImpl(
	string name,
	BindingFlags bindingAttr,
	Binder binder,
	Type returnType,
	Type[] types,
	ParameterModifier[] modifiers
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
name System-String 包含要获取的属性名的字符串。
bindingAttr System-Reflection-BindingFlags 一个位屏蔽,由一个或多个指定搜索执行方式的 BindingFlags 组成。- 或 -零,以返回 null。
binder System-Reflection-Binder 一个 对象,该对象定义一组属性并启用绑定,而绑定可能涉及选择重载成员、强制参数类型和通过反射调用成员。- 或 -空引用(Visual Basic 中为 Nothing)将使用 DefaultBinder。
returnType System-Type 属性的返回类型。
types System-Type[] 一个 Type 对象数组,表示要获取的索引属性的参数的数目、顺序和类型。- 或 -获取未被索引的属性的 Type 类型的空数组(即 Type[] types = new Type[0])。
modifiers System-Reflection-ParameterModifier[] ParameterModifier 对象数组,表示与 types 数组中的相应元素关联的特性。默认的联编程序不处理此参数。
返回值 System.Reflection.PropertyInfo 表示符合指定要求的属性的对象(如果找到的话);否则为 null。

提示和注释

虽然默认联编程序不处理 ParameterModifier(modifiers 参数),但您可以使用抽象 System.Reflection.Binder 类编写确实处理 modifiers 的自定义联编程序。 ParameterModifier 仅当通过 COM 互操作进行调用时才使用,而且仅处理通过引用传递的参数。

可以使用下列 BindingFlags 筛选标志定义包含在搜索中的属性:

为了获取返回值,必须指定 BindingFlags.Instance 或 BindingFlags.Static。

指定 BindingFlags.Public 可在搜索中包含公共属性。

指定 BindingFlags.NonPublic 可在搜索中包含非公共属性(即私有属性、内部属性和受保护属性)。

指定 BindingFlags.FlattenHierarchy 以便沿层次结构向上包括 public 和 protected 静态成员;不包括继承类中的 private 静态成员。

下列 BindingFlags 修饰符标志可用于更改搜索的执行方式:

BindingFlags.IgnoreCase ,表示忽略 name 的大小写。

BindingFlags.DeclaredOnly ,表示仅搜索 Type 上声明的属性,而不搜索被简单继承的属性。

有关更多信息,请参见 System.Reflection.BindingFlags。

System.Type.GetPropertyImpl 方法例子


异常

异常 异常描述
AmbiguousMatchException 找到多个有指定名称且与指定绑定约束匹配的属性。
ArgumentNullException
  • name 为 null。
  • types 为 null。
  • types 中的一个元素为 null。
ArgumentException
  • types 是多维的。
  • modifiers 是多维的。
  • types 和 modifiers 的长度不同。
NotSupportedException 当前类型是 TypeBuilder、EnumBuilder 或 GenericTypeParameterBuilder。

命名空间

namespace: System

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。