18 references to _list
Microsoft.Maui (18)
Primitives\LockableObservableListWrapper.cs (18)
18 add { ((INotifyCollectionChanged)_list).CollectionChanged += value; } 19 remove { ((INotifyCollectionChanged)_list).CollectionChanged -= value; } 24 add { ((INotifyPropertyChanged)_list).PropertyChanged += value; } 25 remove { ((INotifyPropertyChanged)_list).PropertyChanged -= value; } 38 get { return _list[index]; } 42 _list[index] = value; 48 get { return _list.Count; } 53 get { return ((IList<string>)_list).IsReadOnly; } 58 _list.Add(item); 69 _list.Clear(); 80 return _list.Contains(item); 85 _list.CopyTo(array, arrayIndex); 90 return _list.GetEnumerator(); 95 return _list.IndexOf(item); 100 _list.Insert(index, item); 111 return _list.Remove(item); 122 _list.RemoveAt(index); 133 return ((IEnumerable)_list).GetEnumerator();