9 writes to _collection
PresentationCore (9)
System\Windows\Media\Effects\Generated\BitmapEffectCollection.cs (9)
581_collection = new FrugalStructList<BitmapEffect>(count); 603_collection = new FrugalStructList<BitmapEffect>(count); 625_collection = new FrugalStructList<BitmapEffect>(count); 647_collection = new FrugalStructList<BitmapEffect>(count); 877_collection = new FrugalStructList<BitmapEffect>(); 886_collection = new FrugalStructList<BitmapEffect>(capacity); 907_collection = new FrugalStructList<BitmapEffect>(icollectionOfT); 915_collection = new FrugalStructList<BitmapEffect>(icollection); 919_collection = new FrugalStructList<BitmapEffect>();
41 references to _collection
PresentationCore (41)
System\Windows\Media\Effects\Generated\BitmapEffectCollection.cs (41)
81for (int i = _collection.Count - 1; i >= 0; i--) 83OnFreezablePropertyChanged(/* oldValue = */ _collection[i], /* newValue = */ null); 86_collection.Clear(); 88Debug.Assert(_collection.Count == 0); 101return _collection.Contains(value); 111return _collection.IndexOf(value); 128_collection.Insert(index, value); 155BitmapEffect oldValue = _collection[index]; 159_collection.RemoveAt(index); 199BitmapEffect oldValue = _collection[ index ]; 203_collection.RemoveAt(index); 223return _collection[index]; 234if (!Object.ReferenceEquals(_collection[ index ], value)) 237BitmapEffect oldValue = _collection[ index ]; 240_collection[ index ] = value; 264return _collection.Count; 281ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 283_collection.CopyTo(array, index); 391ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 402int count = _collection.Count; 405array.SetValue(_collection[i], index + i); 468return _collection[i]; 481DependencyObject inheritanceChild = _collection[i]; 530index = _collection.Add(newValue); 579int count = sourceBitmapEffectCollection._collection.Count; 585BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].Clone(); 587_collection.Add(newValue); 601int count = sourceBitmapEffectCollection._collection.Count; 607BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].CloneCurrentValue(); 609_collection.Add(newValue); 623int count = sourceBitmapEffectCollection._collection.Count; 629BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].GetAsFrozen(); 631_collection.Add(newValue); 645int count = sourceBitmapEffectCollection._collection.Count; 651BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].GetCurrentValueAsFrozen(); 653_collection.Add(newValue); 665int count = _collection.Count; 668canFreeze &= Freezable.Freeze(_collection[i], isChecking); 777if (_index > -2 && _index < _list._collection.Count - 1) 779_current = _list._collection[++_index]; 929_collection.Add(newValue);