4 references to GetTypeFromProgID
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\Interaction.vb (1)
525
t = Type.
GetTypeFromProgID
(ProgId, ServerName, True)
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Type.cs (3)
568
public static Type? GetTypeFromProgID(string progID) =>
GetTypeFromProgID
(progID, null, throwOnError: false);
570
public static Type? GetTypeFromProgID(string progID, bool throwOnError) =>
GetTypeFromProgID
(progID, null, throwOnError: throwOnError);
572
public static Type? GetTypeFromProgID(string progID, string? server) =>
GetTypeFromProgID
(progID, server, throwOnError: false);