2 writes to _rawList
PresentationFramework (2)
System\Windows\TriggerActionCollection.cs (2)
30_rawList = new List<TriggerAction>(); 38_rawList = new List<TriggerAction>(initialSize);
24 references to _rawList
PresentationFramework (24)
System\Windows\TriggerActionCollection.cs (24)
52return _rawList.Count; 74for (int i = _rawList.Count - 1; i >= 0; i--) 76InheritanceContextHelper.RemoveContextFromObject(_owner, _rawList[i]); 79_rawList.Clear(); 88TriggerAction oldValue = _rawList[index]; 90_rawList.RemoveAt(index); 105_rawList.Add(value); 114return _rawList.Contains(value); 122_rawList.CopyTo(array, index); 130return _rawList.IndexOf(value); 140_rawList.Insert(index, value); 151bool wasRemoved = _rawList.Remove(value); 162return _rawList[index]; 168object oldValue = _rawList[index]; 170_rawList[index] = value; 180return _rawList.GetEnumerator(); 191int index = ((IList) _rawList).Add(VerifyIsTriggerAction(value)); 197return _rawList.Contains(VerifyIsTriggerAction(value)); 202return _rawList.IndexOf(VerifyIsTriggerAction(value)); 227return _rawList[index]; 237((ICollection)_rawList).CopyTo(array, index); 258return ((IEnumerable)_rawList).GetEnumerator(); 266for( int i = 0; i < _rawList.Count; i++ ) 268_rawList[i].Seal(containingTrigger);