IDebugBoundBreakpoint2::SetPassCount
Applies to: Visual Studio Visual Studio for Mac
Note
This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
Sets or changes the pass count associated with this bound breakpoint.
Syntax
HRESULT SetPassCount(
BP_PASSCOUNT bpPassCount
);
int SetPassCount(
BP_PASSCOUNT bpPassCount
);
Parameters
bpPassCount
[in] The BP_PASSCOUNT structure that specifies the pass count.
Return Value
If successful, returns S_OK
; otherwise, returns an error code. Returns E_BP_DELETED
if the state of the bound breakpoint object is set to BPS_DELETED
(part of the BP_STATE enumeration).
Remarks
The pass count determines when the breakpoint is fired. The current pass or hit count can be obtained by calling the GetHitCount method.
Any pass count that was previously associated with this breakpoint is lost.