Type::GetTypeFromCLSID Method (Guid, String)
Gets the type associated with the specified class identifier (CLSID) from the specified server.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- clsid
- Type: System::Guid
The CLSID of the type to get.
- server
- Type: System::String
The server from which to load the type. If the server name is nullptr, this method automatically reverts to the local machine.
The following example retrieves the type associated with the CLSID from the local host.
// Create a GUID. Guid myGuid2 = Guid("00020812-0000-0000-c000-000000000046"); // Get the type associated with the CLSID // from the local host. Type^ myType2 = Type::GetTypeFromCLSID( myGuid2, "." ); Console::WriteLine( "The GUID associated with myType2 is {0}.", myType2->GUID ); Console::WriteLine( "The type of the GUID is {0}.", myType2 );
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.