3 references to GetTypeFromProgID
System.Private.CoreLib (3)
src\runtime\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);