1 write to items
System.Data (1)
fx\src\data\System\Data\Common\DataColumnMappingCollection.cs (1)
170
this.
items
= new List<DataColumnMapping>();
21 references to items
System.Data (21)
fx\src\data\System\Data\Common\DataColumnMappingCollection.cs (21)
73
return ((null !=
items
) ?
items
.Count : 0);
89
return
items
[index];
105
return
items
[index];
169
if (null == this.
items
) {
172
return this.
items
;
182
if (null !=
items
) {
183
foreach(DataColumnMapping item in
items
) {
186
items
.Clear();
211
return
items
[index];
222
if (
items
[i] == value) {
234
if (0 == ADP.SrcCompare(sourceColumn,
items
[i].SourceColumn)) {
246
if ( 0 == ADP.DstCompare(dataSetColumn,
items
[i].DataSetColumn)) {
293
Debug.Assert((null !=
items
) && (0 <= index) && (index < Count), "RemoveIndex, invalid");
294
items
[index].Parent = null;
295
items
.RemoveAt(index);
318
Debug.Assert((null !=
items
) && (0 <= index) && (index < Count), "RemoveIndex, invalid");
320
items
[index].Parent = null;
322
items
[index] = newValue;
378
return columnMappings.
items
[index].GetDataColumnBySchemaAction(dataTable, dataType, schemaAction);
422
return columnMappings.
items
[index];