2 writes to _rawList
PresentationFramework (2)
System\Windows\TriggerActionCollection.cs (2)
31_rawList = new List<TriggerAction>(); 39_rawList = new List<TriggerAction>(initialSize);
24 references to _rawList
PresentationFramework (24)
System\Windows\TriggerActionCollection.cs (24)
53return _rawList.Count; 75for (int i = _rawList.Count - 1; i >= 0; i--) 77InheritanceContextHelper.RemoveContextFromObject(_owner, _rawList[i]); 80_rawList.Clear(); 89TriggerAction oldValue = _rawList[index]; 91_rawList.RemoveAt(index); 106_rawList.Add(value); 115return _rawList.Contains(value); 123_rawList.CopyTo(array, index); 131return _rawList.IndexOf(value); 141_rawList.Insert(index, value); 152bool wasRemoved = _rawList.Remove(value); 163return _rawList[index]; 169object oldValue = _rawList[index]; 171_rawList[index] = value; 181return _rawList.GetEnumerator(); 192int index = ((IList) _rawList).Add(VerifyIsTriggerAction(value)); 198return _rawList.Contains(VerifyIsTriggerAction(value)); 203return _rawList.IndexOf(VerifyIsTriggerAction(value)); 228return _rawList[index]; 238((ICollection)_rawList).CopyTo(array, index); 259return ((IEnumerable)_rawList).GetEnumerator(); 267for( int i = 0; i < _rawList.Count; i++ ) 269_rawList[i].Seal(containingTrigger);