VSNDK.DebugEngine.BreakpointManager.ClearBoundBreakpoints C# (CSharp) Method

ClearBoundBreakpoints() public method

Called from the engine's detach method to remove the debugger's breakpoint instructions.
public ClearBoundBreakpoints ( ) : void
return void
        public void ClearBoundBreakpoints()
        {
            foreach (AD7PendingBreakpoint pendingBreakpoint in m_pendingBreakpoints)
            {
                pendingBreakpoint.ClearBoundBreakpoints();
            }
        }