Type.GetTypeFromHandle Method
Assembly: mscorlib (in mscorlib.dll)
public static Type GetTypeFromHandle ( RuntimeTypeHandle handle )
public static function GetTypeFromHandle ( handle : RuntimeTypeHandle ) : Type
Parameters
- handle
The RuntimeTypeHandle object that refers to the type.
Return Value
The type referenced by the specified RuntimeTypeHandle.The handles are valid only in the application domain in which they were obtained.
If the requested type is non-public and the caller does not have ReflectionPermission to reflect non-public objects outside the current assembly, this method returns a null reference (Nothing in Visual Basic).
MyClass1^ myClass1 = gcnew MyClass1; // Get the type referenced by the specified type handle. Type^ myClass1Type = Type::GetTypeFromHandle( Type::GetTypeHandle( myClass1 ) ); Console::WriteLine( "The Names of the Attributes : {0}", myClass1Type->Attributes );
MyClass1 myClass1 = new MyClass1();
// Get the type referenced by the specified type handle.
Type myClass1Type = Type.GetTypeFromHandle(Type.GetTypeHandle(myClass1));
Console.WriteLine("The Names of the Attributes :" + myClass1Type.
get_Attributes());
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.