2 writes to unmappedBreakpoints
System.Data (2)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Debugger\DebuggerService.cs (2)
76this.unmappedBreakpoints = new Dictionary<SourceLocation, BreakpointTypes>(4); 636this.unmappedBreakpoints = newUnmappedBreakpoints;
15 references to unmappedBreakpoints
System.Data (15)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Debugger\DebuggerService.cs (15)
363if (this.unmappedBreakpoints.TryGetValue(sourceLocation, out breakpointType)) 366this.unmappedBreakpoints.Remove(sourceLocation); 372if (this.unmappedBreakpoints.Count > 0) 375unmappedLocations.AddRange(this.unmappedBreakpoints.Keys); 536if (this.breakpoints.Count > 0 || this.unmappedBreakpoints.Count > 0) 549foreach (KeyValuePair<SourceLocation, BreakpointTypes> entry in this.unmappedBreakpoints) 574if (this.unmappedBreakpoints.TryGetValue(sourceLocation, out oldBreakpointType)) 578this.unmappedBreakpoints.Remove(sourceLocation); 582this.unmappedBreakpoints[sourceLocation] = newBreakpointType; 587this.unmappedBreakpoints.Add(sourceLocation, newBreakpointType); 604this.unmappedBreakpoints.Clear(); 623if (this.unmappedBreakpoints.Count > 0) 625Dictionary<SourceLocation, BreakpointTypes> newUnmappedBreakpoints = new Dictionary<SourceLocation, BreakpointTypes>(this.unmappedBreakpoints.Count); 628if (this.unmappedBreakpoints.ContainsKey(kvpEntry.Value)) 632newUnmappedBreakpoints.Add(newSourceLocationMapping[kvpEntry.Key], this.unmappedBreakpoints[kvpEntry.Value]);