2 writes to _rawList
PresentationFramework (2)
System\Windows\TriggerActionCollection.cs (2)
33_rawList = new List<TriggerAction>(); 41_rawList = new List<TriggerAction>(initialSize);
24 references to _rawList
PresentationFramework (24)
System\Windows\TriggerActionCollection.cs (24)
55return _rawList.Count; 77for (int i = _rawList.Count - 1; i >= 0; i--) 79InheritanceContextHelper.RemoveContextFromObject(_owner, _rawList[i]); 82_rawList.Clear(); 91TriggerAction oldValue = _rawList[index]; 93_rawList.RemoveAt(index); 108_rawList.Add(value); 117return _rawList.Contains(value); 125_rawList.CopyTo(array, index); 133return _rawList.IndexOf(value); 143_rawList.Insert(index, value); 154bool wasRemoved = _rawList.Remove(value); 165return _rawList[index]; 171object oldValue = _rawList[index]; 173_rawList[index] = value; 183return _rawList.GetEnumerator(); 194int index = ((IList) _rawList).Add(VerifyIsTriggerAction(value)); 200return _rawList.Contains(VerifyIsTriggerAction(value)); 205return _rawList.IndexOf(VerifyIsTriggerAction(value)); 230return _rawList[index]; 240((ICollection)_rawList).CopyTo(array, index); 261return ((IEnumerable)_rawList).GetEnumerator(); 269for( int i = 0; i < _rawList.Count; i++ ) 271_rawList[i].Seal(containingTrigger);