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