9 writes to _collection
PresentationCore (9)
System\Windows\Media\Effects\Generated\BitmapEffectCollection.cs (9)
575_collection = new FrugalStructList<BitmapEffect>(count); 595_collection = new FrugalStructList<BitmapEffect>(count); 615_collection = new FrugalStructList<BitmapEffect>(count); 635_collection = new FrugalStructList<BitmapEffect>(count); 862_collection = new FrugalStructList<BitmapEffect>(); 871_collection = new FrugalStructList<BitmapEffect>(capacity); 892_collection = new FrugalStructList<BitmapEffect>(icollectionOfT); 900_collection = new FrugalStructList<BitmapEffect>(icollection); 904_collection = new FrugalStructList<BitmapEffect>();
41 references to _collection
PresentationCore (41)
System\Windows\Media\Effects\Generated\BitmapEffectCollection.cs (41)
78for (int i = _collection.Count - 1; i >= 0; i--) 80OnFreezablePropertyChanged(/* oldValue = */ _collection[i], /* newValue = */ null); 83_collection.Clear(); 85Debug.Assert(_collection.Count == 0); 98return _collection.Contains(value); 108return _collection.IndexOf(value); 125_collection.Insert(index, value); 152BitmapEffect oldValue = _collection[index]; 156_collection.RemoveAt(index); 196BitmapEffect oldValue = _collection[ index ]; 200_collection.RemoveAt(index); 220return _collection[index]; 231if (!Object.ReferenceEquals(_collection[ index ], value)) 233BitmapEffect oldValue = _collection[ index ]; 236_collection[ index ] = value; 258return _collection.Count; 275ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 277_collection.CopyTo(array, index); 385ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 396int count = _collection.Count; 399array.SetValue(_collection[i], index + i); 462return _collection[i]; 475DependencyObject inheritanceChild = _collection[i]; 524index = _collection.Add(newValue); 573int count = sourceBitmapEffectCollection._collection.Count; 579BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].Clone(); 581_collection.Add(newValue); 593int count = sourceBitmapEffectCollection._collection.Count; 599BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].CloneCurrentValue(); 601_collection.Add(newValue); 613int count = sourceBitmapEffectCollection._collection.Count; 619BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].GetAsFrozen(); 621_collection.Add(newValue); 633int count = sourceBitmapEffectCollection._collection.Count; 639BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].GetCurrentValueAsFrozen(); 641_collection.Add(newValue); 651int count = _collection.Count; 654canFreeze &= Freezable.Freeze(_collection[i], isChecking); 762if (_index > -2 && _index < _list._collection.Count - 1) 764_current = _list._collection[++_index]; 914_collection.Add(newValue);