3 references to GetTypeFromCLSID
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Type.cs (3)
559
public static Type? GetTypeFromCLSID(Guid clsid) =>
GetTypeFromCLSID
(clsid, null, throwOnError: false);
561
public static Type? GetTypeFromCLSID(Guid clsid, bool throwOnError) =>
GetTypeFromCLSID
(clsid, null, throwOnError: throwOnError);
563
public static Type? GetTypeFromCLSID(Guid clsid, string? server) =>
GetTypeFromCLSID
(clsid, server, throwOnError: false);