Type.GetTypeFromCLSID Method (Guid, String)
.NET Framework 3.0
Gets the type associated with the specified class identifier (CLSID) from the specified server.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
public static Type GetTypeFromCLSID ( Guid clsid, String server )
public static function GetTypeFromCLSID ( clsid : Guid, server : String ) : Type
Not applicable.
Parameters
- clsid
The CLSID of the type to get.
- server
The server from which to load the type. If the server name is a null reference (Nothing in Visual Basic), this method automatically reverts to the local machine.
Return Value
System.__ComObject regardless of whether the CLSID is valid.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 );
// Create a GUID.
Guid myGuid2 = new 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.get_GUID());
Console.WriteLine("The type of the GUID is {0}.",
myType2.ToString());
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: