1 write to items
System.Data (1)
fx\src\data\System\Data\Common\DataTableMappingCollection.cs (1)
173this.items = new List<DataTableMapping>();
19 references to items
System.Data (19)
fx\src\data\System\Data\Common\DataTableMappingCollection.cs (19)
76return ((null != items) ? items.Count : 0); 92return items[index]; 108return items[index]; 172if (null == this.items) { 175return this.items; 185if (null != items) { 186foreach(DataTableMapping item in items) { 189items.Clear(); 214return items[index]; 225if (items[i] == value) { 236string value = items[i].SourceTable; 248string value = items[i].DataSetTable; 296Debug.Assert((null != items) && (0 <= index) && (index < Count), "RemoveIndex, invalid"); 297items[index].Parent = null; 298items.RemoveAt(index); 322items[index].Parent = null; 324items[index] = newValue; 379return tableMappings.items[index];