Exemplo n.º 1
0
 /// <summary>
 /// Remove the given bound breakpoint.
 /// </summary>
 internal void RemoveBoundBreakpoint(IDebugBoundBreakpoint boundBreakpoint)
 {
     lock (boundBreakpointsLock)
     {
         boundBreakpoints.Remove(boundBreakpoint);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Record the given bound breakpoint.
 /// </summary>
 internal void AddBoundBreakpoint(IDebugBoundBreakpoint boundBreakpoint)
 {
     lock (boundBreakpointsLock)
     {
         boundBreakpoints.Add(boundBreakpoint);
     }
 }
Exemplo n.º 3
0
 /// <summary>
 /// Remove the given bound breakpoint.
 /// </summary>
 internal void RemoveBoundBreakpoint(IDebugBoundBreakpoint boundBreakpoint)
 {
     lock (boundBreakpointsLock)
     {
         boundBreakpoints.Remove(boundBreakpoint);
     }
 }
Exemplo n.º 4
0
 /// <summary>
 /// Record the given bound breakpoint.
 /// </summary>
 internal void AddBoundBreakpoint(IDebugBoundBreakpoint boundBreakpoint)
 {
     lock (boundBreakpointsLock)
     {
         boundBreakpoints.Add(boundBreakpoint);
     }
 }
Exemplo n.º 5
0
 /// <summary>
 /// Default ctor
 /// </summary>
 public BreakpointUnboundEvent(IDebugBoundBreakpoint boundBreakpoint)
 {
     this.boundBreakpoint = boundBreakpoint;
 }