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)
52
return
_rawList
.Count;
74
for (int i =
_rawList
.Count - 1; i >= 0; i--)
76
InheritanceContextHelper.RemoveContextFromObject(_owner,
_rawList
[i]);
79
_rawList
.Clear();
88
TriggerAction oldValue =
_rawList
[index];
90
_rawList
.RemoveAt(index);
105
_rawList
.Add(value);
114
return
_rawList
.Contains(value);
122
_rawList
.CopyTo(array, index);
130
return
_rawList
.IndexOf(value);
140
_rawList
.Insert(index, value);
151
bool wasRemoved =
_rawList
.Remove(value);
162
return
_rawList
[index];
168
object oldValue =
_rawList
[index];
170
_rawList
[index] = value;
180
return
_rawList
.GetEnumerator();
191
int index = ((IList)
_rawList
).Add(VerifyIsTriggerAction(value));
197
return
_rawList
.Contains(VerifyIsTriggerAction(value));
202
return
_rawList
.IndexOf(VerifyIsTriggerAction(value));
227
return
_rawList
[index];
237
((ICollection)
_rawList
).CopyTo(array, index);
258
return ((IEnumerable)
_rawList
).GetEnumerator();
266
for( int i = 0; i <
_rawList
.Count; i++ )
268
_rawList
[i].Seal(containingTrigger);