2 writes to _rawList
PresentationFramework (2)
src\Framework\System\Windows\TriggerActionCollection.cs (2)
32_rawList = new List<TriggerAction>(); 40_rawList = new List<TriggerAction>(initialSize);
24 references to _rawList
PresentationFramework (24)
src\Framework\System\Windows\TriggerActionCollection.cs (24)
54return _rawList.Count; 76for (int i = _rawList.Count - 1; i >= 0; i--) 78InheritanceContextHelper.RemoveContextFromObject(_owner, _rawList[i]); 81_rawList.Clear(); 90TriggerAction oldValue = _rawList[index]; 92_rawList.RemoveAt(index); 107_rawList.Add(value); 116return _rawList.Contains(value); 124_rawList.CopyTo(array, index); 132return _rawList.IndexOf(value); 142_rawList.Insert(index, value); 153bool wasRemoved = _rawList.Remove(value); 164return _rawList[index]; 170object oldValue = _rawList[index]; 172_rawList[index] = value; 182return _rawList.GetEnumerator(); 193int index = ((IList) _rawList).Add(VerifyIsTriggerAction(value)); 199return _rawList.Contains(VerifyIsTriggerAction(value)); 204return _rawList.IndexOf(VerifyIsTriggerAction(value)); 229return _rawList[index]; 239((ICollection)_rawList).CopyTo(array, index); 260return ((IEnumerable)_rawList).GetEnumerator(); 268for( int i = 0; i < _rawList.Count; i++ ) 270_rawList[i].Seal(containingTrigger);