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