TypeDescriptor.GetReflectionType 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回可用于执行反射的 Type。
重载
GetReflectionType(Object) |
如果给定对象,则返回可用于执行反射的 Type。 |
GetReflectionType(Type) |
如果给定类类型,则返回可用于执行反射的 Type。 |
GetReflectionType(Object)
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
如果给定对象,则返回可用于执行反射的 Type。
public:
static Type ^ GetReflectionType(System::Object ^ instance);
public static Type GetReflectionType (object instance);
static member GetReflectionType : obj -> Type
Public Shared Function GetReflectionType (instance As Object) As Type
参数
- instance
- Object
目标组件的实例。
返回
所指定对象的 Type。
例外
instance
为 null
。
注解
方法 GetReflectionType 是 方法的 GetTypeDescriptor 低级别版本。 GetReflectionType 在找不到对象的自定义类型描述符时,通常用于对对象执行标准反射。
另请参阅
适用于
GetReflectionType(Type)
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
如果给定类类型,则返回可用于执行反射的 Type。
public:
static Type ^ GetReflectionType(Type ^ type);
public static Type GetReflectionType (Type type);
static member GetReflectionType : Type -> Type
Public Shared Function GetReflectionType (type As Type) As Type
参数
返回
指定类的 Type。
例外
type
为 null
。
注解
方法 GetReflectionType 是 方法的 GetTypeDescriptor 低级别版本。 GetReflectionType 在找不到任何自定义类型描述符时,通常用于对类执行标准反射。