IVsDebugger2.IsEngineCompatible(Guid, UInt32, Guid[]) 方法

定义

检查调试引擎与其他调试引擎的兼容性。

public:
 int IsEngineCompatible(Guid % guidEngine, System::UInt32 EngineCount, cli::array <Guid> ^ pEngineGUIDs);
public int IsEngineCompatible (ref Guid guidEngine, uint EngineCount, Guid[] pEngineGUIDs);
abstract member IsEngineCompatible : Guid * uint32 * Guid[] -> int
Public Function IsEngineCompatible (ByRef guidEngine As Guid, EngineCount As UInteger, pEngineGUIDs As Guid()) As Integer

参数

guidEngine
Guid

中测试兼容性的引擎的 GUID。

EngineCount
UInt32

中数组中的 Guid 数目 pEngineGUIDs

pEngineGUIDs
Guid[]

中调试引擎的 Guid 数组。

返回

Int32

S_OK如果调试引擎 (guidEngine) 是否与 pEngineGUIDs 中的所有引擎兼容,则返回。 否则,该方法将返回 S_FALSE

注解

COM 签名

从 vsshell80:

HRESULT IVsDebugger2::IsEngineCompatible(  
   [in] REFGUID guidEngine,  
   [in] ULONG EngineCount,  
   [in, size_is(EngineCount)] GUID * pEngineGUIDs  
);  

适用于