IDkmBreakpointManager.SetBoundBreakpointHitCountValue 方法

定义

修改断点命中次数的值。

public:
 void SetBoundBreakpointHitCountValue(Microsoft::VisualStudio::Debugger::Breakpoints::DkmBoundBreakpoint ^ boundBreakpoint, int newValue);
public void SetBoundBreakpointHitCountValue (Microsoft.VisualStudio.Debugger.Breakpoints.DkmBoundBreakpoint boundBreakpoint, int newValue);
abstract member SetBoundBreakpointHitCountValue : Microsoft.VisualStudio.Debugger.Breakpoints.DkmBoundBreakpoint * int -> unit
Public Sub SetBoundBreakpointHitCountValue (boundBreakpoint As DkmBoundBreakpoint, newValue As Integer)

参数

boundBreakpoint
DkmBoundBreakpoint

中表示一个断点,该断点已 (解析) 到特定的代码指令地址或特定的数据元素。 例如,在 c + + 模板中,可以创建源行的 DkmPendingBreakpoint。 断点管理器会将其解析为零 (ex: module 未加载) ,一个 (例如:模板仅用于 "int" ) 或多个 (例如:模板用于许多模板参数) 位置。 每个位置都有一个 DkmBoundBreakpoint 对象。

newValue
Int32

中命中计数的新值。

适用于