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