IDkmBreakpointManager.SetBoundBreakpointHitCountValue Method

Definition

Modifies the value for a breakpoint hit count.

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)

Parameters

boundBreakpoint
DkmBoundBreakpoint

[In] Represents a breakpoint which has been bound (resolved) to a particular code instruction address or a particular data element. For example, in C++ templates one could create a DkmPendingBreakpoint for a source line. The breakpoint manager would resolve it to zero (ex: module not loaded), one (ex: template is only used on 'int') or many (ex: template is used with many template arguments) location. Each location would have a DkmBoundBreakpoint object.

newValue
Int32

[In] New value for the hit count.

Applies to