ICorDebugBreakpoint

更新:2007 年 11 月

表示函数中的断点,或值的观察点。

interface ICorDebugBreakpoint : IUnknown {
    HRESULT Activate (
        [in] BOOL  bActive
    );
        
    HRESULT IsActive (
        [out] BOOL *pbActive
    );
};

方法

方法

说明

ICorDebugBreakpoint::Activate 方法

设置此 ICorDebugBreakpoint 的活动状态。

ICorDebugBreakpoint::IsActive 方法

获取一个值,该值指示此 ICorDebugBreakpoint 是否为活动断点。

备注

断点不直接支持条件表达式。如果需要此类功能,除 ICorDebugBreakpoint 之外调试器必须另外实现该功能。

ICorDebugFunctionBreakpoint 接口扩展 ICorDebugBreakpoint 接口以支持函数中的断点。

要求

**平台:**请参见 .NET Framework 系统要求

**头文件:**CorDebug.idl

**库:**CorGuids.lib

**.NET Framework 版本:**3.5 SP1、3.5、3.0 SP1、3.0、2.0 SP1、2.0、1.1、1.0

请参见

其他资源

调试接口