2 writes to _rawList
PresentationFramework (2)
src\Framework\System\Windows\TriggerActionCollection.cs (2)
32
_rawList
= new List<TriggerAction>();
40
_rawList
= new List<TriggerAction>(initialSize);
24 references to _rawList
PresentationFramework (24)
src\Framework\System\Windows\TriggerActionCollection.cs (24)
54
return
_rawList
.Count;
76
for (int i =
_rawList
.Count - 1; i >= 0; i--)
78
InheritanceContextHelper.RemoveContextFromObject(_owner,
_rawList
[i]);
81
_rawList
.Clear();
90
TriggerAction oldValue =
_rawList
[index];
92
_rawList
.RemoveAt(index);
107
_rawList
.Add(value);
116
return
_rawList
.Contains(value);
124
_rawList
.CopyTo(array, index);
132
return
_rawList
.IndexOf(value);
142
_rawList
.Insert(index, value);
153
bool wasRemoved =
_rawList
.Remove(value);
164
return
_rawList
[index];
170
object oldValue =
_rawList
[index];
172
_rawList
[index] = value;
182
return
_rawList
.GetEnumerator();
193
int index = ((IList)
_rawList
).Add(VerifyIsTriggerAction(value));
199
return
_rawList
.Contains(VerifyIsTriggerAction(value));
204
return
_rawList
.IndexOf(VerifyIsTriggerAction(value));
229
return
_rawList
[index];
239
((ICollection)
_rawList
).CopyTo(array, index);
260
return ((IEnumerable)
_rawList
).GetEnumerator();
268
for( int i = 0; i <
_rawList
.Count; i++ )
270
_rawList
[i].Seal(containingTrigger);