TypeDescriptor.GetReflectionType 方法

定义

返回可用于执行反射的 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

例外

instancenull

注解

方法 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

目标组件的 Type

返回

指定类的 Type

例外

typenull

注解

方法 GetReflectionType 是 方法的 GetTypeDescriptor 低级别版本。 GetReflectionType 在找不到任何自定义类型描述符时,通常用于对类执行标准反射。

另请参阅

适用于