Type.GetTypeFromProgID Method (String, String, Boolean)
Gets the type associated with the specified program identifier (progID) from the specified server, specifying whether to throw an exception if an error occurs while loading the type.
Assembly: mscorlib (in mscorlib.dll)
[SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.UnmanagedCode)] public static Type GetTypeFromProgID( string progID, string server, bool throwOnError )
Parameters
- progID
- Type: System.String
The progID of the Type to get.
- server
- Type: System.String
The server from which to load the type. If the server name is null, this method automatically reverts to the local machine.
- throwOnError
- Type: System.Boolean
true to throw any exception that occurs.
-or-
false to ignore any exception that occurs.
Return Value
Type: System.TypeThe Type associated with the specified program identifier (progID), if progID is a valid entry in the registry and a type is associated with it; otherwise, null.
| Exception | Condition |
|---|---|
| ArgumentException | progID is null. |
| COMException | The specified progID is not registered. |
The following example retrieves a type by passing a ProgID and server name. The example then displays the ClassID related to the ProgID, specifying whether to throw an exception if the ProgID or the server name is invalid.
using System; class MainApp { public static void Main() { try { // Use server localhost. string theServer="localhost"; // Use ProgID HKEY_CLASSES_ROOT\DirControl.DirList.1. string myString1 ="DirControl.DirList.1"; // Use a wrong ProgID WrongProgID. string myString2 ="WrongProgID"; // Make a call to the method to get the type information for the given ProgID. Type myType1 =Type.GetTypeFromProgID(myString1,theServer,true); Console.WriteLine("GUID for ProgID DirControl.DirList.1 is {0}.", myType1.GUID); // Throw an exception because the ProgID is invalid and the throwOnError // parameter is set to True. Type myType2 =Type.GetTypeFromProgID(myString2, theServer, true); } catch(Exception e) { Console.WriteLine("An exception occurred. The ProgID is wrong."); Console.WriteLine("Source: {0}" , e.Source); Console.WriteLine("Message: {0}" , e.Message); } } }
- SecurityPermission
for executing unmanaged code. Associated enumeration: SecurityPermissionFlag.UnmanagedCode
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.