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)
53
return
_rawList
.Count;
75
for (int i =
_rawList
.Count - 1; i >= 0; i--)
77
InheritanceContextHelper.RemoveContextFromObject(_owner,
_rawList
[i]);
80
_rawList
.Clear();
89
TriggerAction oldValue =
_rawList
[index];
91
_rawList
.RemoveAt(index);
106
_rawList
.Add(value);
115
return
_rawList
.Contains(value);
123
_rawList
.CopyTo(array, index);
131
return
_rawList
.IndexOf(value);
141
_rawList
.Insert(index, value);
152
bool wasRemoved =
_rawList
.Remove(value);
163
return
_rawList
[index];
169
object oldValue =
_rawList
[index];
171
_rawList
[index] = value;
181
return
_rawList
.GetEnumerator();
192
int index = ((IList)
_rawList
).Add(VerifyIsTriggerAction(value));
198
return
_rawList
.Contains(VerifyIsTriggerAction(value));
203
return
_rawList
.IndexOf(VerifyIsTriggerAction(value));
228
return
_rawList
[index];
238
((ICollection)
_rawList
).CopyTo(array, index);
259
return ((IEnumerable)
_rawList
).GetEnumerator();
267
for( int i = 0; i <
_rawList
.Count; i++ )
269
_rawList
[i].Seal(containingTrigger);