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