Exemple #1
0
 public void Deactivate(ICorDebugBreakpoint bp)
 {
     _breakpointsMap.Remove(GetFunctionToken(bp));
     bp.Activate(0);
 }
Exemple #2
0
 /// <summary>
 /// Activates the breakpoint.
 /// </summary>
 /// <param name="active">if set to <c>true</c> then breakpoint becomes active.</param>
 public void Activate(bool active)
 {
     cobreakpoint.Activate(active ? 1 : 0);
 }
 public virtual void Activate(bool active)
 {
     m_corBreakpoint.Activate(active ? 1 : 0);
 }
 public void Activate(bool active)
 {
     m_br.Activate(active ? 1 : 0);
 }