2 writes to _readerDataValues
System.Data (2)
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (2)
148_readerDataValues = SetupSchemaWithoutKeyInfo(mappingAction, schemaAction, gettingData, parentChapterColumn, parentChapterValue); 151_readerDataValues = SetupSchemaWithKeyInfo(mappingAction, schemaAction, gettingData, parentChapterColumn, parentChapterValue);
22 references to _readerDataValues
System.Data (22)
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (22)
172return _readerDataValues; 178_dataReader.GetValues(_readerDataValues); 223_mappedDataValues[k] = _readerDataValues[i]; // from reader to dataset 235_mappedDataValues[i] = _readerDataValues[i]; // from reader to dataset 249_mappedDataValues[k] = _readerDataValues[i]; // from reader to dataset 255Debug.Assert(_mappedLength == Math.Min(_readerDataValues.Length, _mappedDataValues.Length), "incorrect precomputed length"); 259_mappedDataValues[i] = _readerDataValues[i]; // from reader to dataset 268string xml = _readerDataValues[i] as string; 269if ((null == xml) && (_readerDataValues[i] is System.Data.SqlTypes.SqlString)) { 270System.Data.SqlTypes.SqlString x = (System.Data.SqlTypes.SqlString)_readerDataValues[i]; 278_readerDataValues[i] = System.Data.SqlTypes.SqlXml.Null; 281_readerDataValues[i] = DBNull.Value; 292_readerDataValues[i] = new System.Data.SqlTypes.SqlXml(reader); 297_readerDataValues[i] = document; 311return _readerDataValues; // from reader to dataset 334for (int i = 0; i < _readerDataValues.Length; ++i) { 335_readerDataValues[i] = null; 342_dataReader.GetValues(_readerDataValues); 376IDisposable disposable = (_readerDataValues[i] as IDisposable); 378_readerDataValues[i] = null; 391object readerValue = _readerDataValues[i]; 393_readerDataValues[i] = null;