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