IDebugPendingBreakpoint2::SetPassCount

Applies to: yesVisual Studio noVisual 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 the pending breakpoint.

Syntax

HRESULT SetPassCount( 
   BP_PASSCOUNT bpPassCount
);
int SetPassCount( 
   BP_PASSCOUNT bpPassCount
);

Parameters

bpPassCount
[in] A BP_PASSCOUNT structure that contains the pass count.

Return Value

If successful, returns S_OK; otherwise, returns an error code. Returns E_BP_DELETED if the breakpoint has been deleted.

Remarks

Any pass count that was previously associated with the pending breakpoint is lost. All breakpoints bound from this pending breakpoint are called to set their pass count to the bpPassCount parameter.

See also