1 write to breakpoints
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Debugger\DebuggerService.cs (1)
73
this.
breakpoints
= new Dictionary<ModelItem, BreakpointTypes>();
11 references to breakpoints
System.Data (11)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Debugger\DebuggerService.cs (11)
309
if (this.
breakpoints
.TryGetValue(modelItem, out breakpointType))
392
if (this.
breakpoints
.TryGetValue(modelItem, out actualBreakpointType))
402
if (this.
breakpoints
.TryGetValue(modelItem, out oldBreakpointType))
407
this.
breakpoints
.Remove(modelItem);
411
this.
breakpoints
[modelItem] = newBreakpointType;
416
this.
breakpoints
.Add(modelItem, newBreakpointType);
536
if (this.
breakpoints
.Count > 0 || this.unmappedBreakpoints.Count > 0)
538
foreach (KeyValuePair<ModelItem, BreakpointTypes> entry in this.
breakpoints
)
601
ModelItem[] oldModelItems = new ModelItem[this.
breakpoints
.Keys.Count];
602
this.
breakpoints
.Keys.CopyTo(oldModelItems, 0);
603
this.
breakpoints
.Clear();