9 writes to _collection
PresentationCore (9)
System\Windows\Media\Effects\Generated\BitmapEffectCollection.cs (9)
582_collection = new FrugalStructList<BitmapEffect>(count); 604_collection = new FrugalStructList<BitmapEffect>(count); 626_collection = new FrugalStructList<BitmapEffect>(count); 648_collection = new FrugalStructList<BitmapEffect>(count); 878_collection = new FrugalStructList<BitmapEffect>(); 887_collection = new FrugalStructList<BitmapEffect>(capacity); 908_collection = new FrugalStructList<BitmapEffect>(icollectionOfT); 916_collection = new FrugalStructList<BitmapEffect>(icollection); 920_collection = new FrugalStructList<BitmapEffect>();
41 references to _collection
PresentationCore (41)
System\Windows\Media\Effects\Generated\BitmapEffectCollection.cs (41)
82for (int i = _collection.Count - 1; i >= 0; i--) 84OnFreezablePropertyChanged(/* oldValue = */ _collection[i], /* newValue = */ null); 87_collection.Clear(); 89Debug.Assert(_collection.Count == 0); 102return _collection.Contains(value); 112return _collection.IndexOf(value); 129_collection.Insert(index, value); 156BitmapEffect oldValue = _collection[index]; 160_collection.RemoveAt(index); 200BitmapEffect oldValue = _collection[ index ]; 204_collection.RemoveAt(index); 224return _collection[index]; 235if (!Object.ReferenceEquals(_collection[ index ], value)) 238BitmapEffect oldValue = _collection[ index ]; 241_collection[ index ] = value; 265return _collection.Count; 282ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 284_collection.CopyTo(array, index); 392ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 403int count = _collection.Count; 406array.SetValue(_collection[i], index + i); 469return _collection[i]; 482DependencyObject inheritanceChild = _collection[i]; 531index = _collection.Add(newValue); 580int count = sourceBitmapEffectCollection._collection.Count; 586BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].Clone(); 588_collection.Add(newValue); 602int count = sourceBitmapEffectCollection._collection.Count; 608BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].CloneCurrentValue(); 610_collection.Add(newValue); 624int count = sourceBitmapEffectCollection._collection.Count; 630BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].GetAsFrozen(); 632_collection.Add(newValue); 646int count = sourceBitmapEffectCollection._collection.Count; 652BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].GetCurrentValueAsFrozen(); 654_collection.Add(newValue); 666int count = _collection.Count; 669canFreeze &= Freezable.Freeze(_collection[i], isChecking); 778if (_index > -2 && _index < _list._collection.Count - 1) 780_current = _list._collection[++_index]; 930_collection.Add(newValue);