Type.GetTypeFromCLSID Method (Guid)
.NET Framework 4.5
Gets the type associated with the specified class identifier (CLSID).
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- clsid
- Type: System.Guid
The CLSID of the type to get.
The following example retrieves a GUID by passing the clsid parameter to the constructor of the Guid structure, and then retrieves the type associated with the specified class identifier (CLSID).
using System; class MyGetTypeFromCLSID { public static void Main() { // Create a GUID object by passing the clsid parameter. Guid myGuid1 = new Guid("1AE77DA4-1063-4ab3-BCD2-085B001EFB97"); // Get the type object associated with the CLSID. Type myType1 = Type.GetTypeFromCLSID(myGuid1); // Display the GUID. Console.WriteLine(myType1.GUID); // Convert the GUID to a string. Console.WriteLine(myType1.ToString()); } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.