TypeDescriptor.GetReflectionType Metodo

Definizione

Restituisce un oggetto Type che può essere usato per effettuare la reflection.

Overload

GetReflectionType(Object)

Restituisce un oggetto Type che può essere usato per effettuare la reflection secondo un oggetto.

GetReflectionType(Type)

Restituisce un oggetto Type che può essere usato per effettuare la reflection, specificato un tipo di classe.

GetReflectionType(Object)

Source:
TypeDescriptor.cs
Source:
TypeDescriptor.cs
Source:
TypeDescriptor.cs

Restituisce un oggetto Type che può essere usato per effettuare la reflection secondo un oggetto.

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

Parametri

instance
Object

Istanza del componente di destinazione.

Restituisce

Oggetto Type per l'oggetto specificato.

Eccezioni

instance è null.

Commenti

Il GetReflectionType metodo è una versione di basso livello del GetTypeDescriptor metodo. GetReflectionType viene in genere usato per eseguire la reflection standard su un oggetto quando non è possibile individuare un descrittore di tipo personalizzato.

Vedi anche

Si applica a

GetReflectionType(Type)

Source:
TypeDescriptor.cs
Source:
TypeDescriptor.cs
Source:
TypeDescriptor.cs

Restituisce un oggetto Type che può essere usato per effettuare la reflection, specificato un tipo di classe.

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

Parametri

type
Type

Oggetto Type del componente di destinazione.

Restituisce

Oggetto Type della classe specificata.

Eccezioni

type è null.

Commenti

Il GetReflectionType metodo è una versione di basso livello del GetTypeDescriptor metodo. GetReflectionType viene in genere usato per eseguire la reflection standard su una classe quando non è possibile individuare un descrittore di tipo personalizzato.

Vedi anche

Si applica a