RuntimeReflectionExtensions.GetRuntimeProperty(Type, String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索表示指定属性的对象。
public:
[System::Runtime::CompilerServices::Extension]
static System::Reflection::PropertyInfo ^ GetRuntimeProperty(Type ^ type, System::String ^ name);
public static System.Reflection.PropertyInfo GetRuntimeProperty (this Type type, string name);
public static System.Reflection.PropertyInfo? GetRuntimeProperty (this Type type, string name);
static member GetRuntimeProperty : Type * string -> System.Reflection.PropertyInfo
<Extension()>
Public Function GetRuntimeProperty (type As Type, name As String) As PropertyInfo
参数
- type
- Type
包含该属性的类型。
- name
- String
属性的名称。
返回
表示指定属性的对象,若未找到该属性则为 null
。
例外
type
不是 RuntimeType
。
已找到名称所请求名称一致的多个属性。