2 writes to sortedTimerList
System.Activities (2)
System\Activities\Statements\TimerTable.cs (2)
27this.sortedTimerList = new SortedTimerList(); 43set { this.sortedTimerList = value; }
12 references to sortedTimerList
System.Activities (12)
System\Activities\Statements\TimerTable.cs (12)
35return this.sortedTimerList.Count; 42get { return this.sortedTimerList; } 56this.sortedTimerList.Add(timerData); 71if (this.sortedTimerList.TryGetValue(bookmark, out expirationTimeData)) 73this.sortedTimerList.Remove(bookmark); 107if (this.sortedTimerList.ContainsKey(bookmark)) 130if (this.sortedTimerList.Count > 0) 132return this.sortedTimerList.Timers[0].ExpirationTime; 143this.sortedTimerList.OnLoad(); 145foreach (TimerData timerData in this.sortedTimerList.Timers) 195foreach (TimerData timerData in this.sortedTimerList.Timers) 201this.sortedTimerList.Clear();