UpdateLiveWatch() private method

private UpdateLiveWatch ( Mono.Debugging.Client.Breakpoint bp, string trace ) : bool
bp Mono.Debugging.Client.Breakpoint
trace string
return bool
Esempio n. 1
0
 static void BreakpointTraceHandler(BreakEvent be, string trace)
 {
     if (be is Breakpoint)
     {
         if (pinnedWatches.UpdateLiveWatch((Breakpoint)be, trace))
         {
             return;                     // No need to log the value. It is shown in the watch.
         }
     }
     console.Log.Write(trace + "\n");
 }
Esempio n. 2
0
 static void BreakpointTraceHandler(BreakEvent be, string trace)
 {
     if (be is Breakpoint)
     {
         if (pinnedWatches.UpdateLiveWatch((Breakpoint)be, trace))
         {
             return;                     // No need to log the value. It is shown in the watch.
         }
     }
     DebugWriter(0, "", trace + Environment.NewLine);
 }