TypeBuilder.GetPropertyImpl 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在派生类中重写时,使用指定的绑定约束搜索其参数与指定参数类型和修饰符匹配的指定属性。
protected:
override System::Reflection::PropertyInfo ^ GetPropertyImpl(System::String ^ name, System::Reflection::BindingFlags bindingAttr, System::Reflection::Binder ^ binder, Type ^ returnType, cli::array <Type ^> ^ types, cli::array <System::Reflection::ParameterModifier> ^ modifiers);
protected override System.Reflection.PropertyInfo GetPropertyImpl (string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder? binder, Type? returnType, Type[]? types, System.Reflection.ParameterModifier[]? modifiers);
protected override System.Reflection.PropertyInfo GetPropertyImpl (string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, Type returnType, Type[] types, System.Reflection.ParameterModifier[] modifiers);
override this.GetPropertyImpl : string * System.Reflection.BindingFlags * System.Reflection.Binder * Type * Type[] * System.Reflection.ParameterModifier[] -> System.Reflection.PropertyInfo
Protected Overrides Function GetPropertyImpl (name As String, bindingAttr As BindingFlags, binder As Binder, returnType As Type, types As Type(), modifiers As ParameterModifier()) As PropertyInfo
参数
- name
- String
包含要获取的属性的名称的字符串。
- binder
- Binder
一个对象,该对象定义一组属性并启用绑定,这可能涉及选择重载成员、强制参数类型以及通过反射调用成员。
-或-
使用 DefaultBinder的 null
引用(在 Visual Basic 中Nothing
)。
- returnType
- Type
属性的返回类型。
- types
- Type[]
表示要获取的索引属性的参数数、顺序和类型的 Type 对象的数组。
-或-
类型为空数组 Type(即 Type[] types = new Type[0]),以获取未编制索引的属性。
- modifiers
- ParameterModifier[]
表示与 types
数组中相应元素关联的属性的 ParameterModifier 对象的数组。 默认绑定器不处理此参数。
返回
一个对象,表示符合指定要求的属性(如果找到);否则,null
。