Implemented interface member:
method
GetValue
System.Data.IDataRecord.GetValue(System.Int32)
7 overrides of GetValue
System.Data (4)
fx\src\data\System\Data\DataTableReader.cs (1)
560override public object GetValue (int ordinal) {
fx\src\data\System\Data\Odbc\OdbcDataReader.cs (1)
492override public object GetValue(int i) {
fx\src\data\System\Data\OleDb\OleDbDataReader.cs (1)
1031override public object GetValue(int ordinal) {
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (1)
2516override public object GetValue(int i) {
System.Data.Entity (2)
System\Data\EntityClient\EntityDataReader.cs (1)
438public override object GetValue(int ordinal)
System\Data\Query\ResultAssembly\BridgeDataReader.cs (1)
623override public Object GetValue(int ordinal) {
System.Data.Linq (1)
SqlClient\Reader\ObjectReaderCompiler.cs (1)
2952public override object GetValue(int i) { return reader.GetValue(i); }
13 references to GetValue
System.Data (6)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (3)
1969o = reader.GetValue(i); 2003ts = (TimeSpan)reader.GetValue(i); 2015dto = (DateTimeOffset)reader.GetValue(i);
fx\src\data\System\Data\Common\DbDataReader.cs (2)
153return GetValue(ordinal); 195return (T)GetValue(ordinal);
fx\src\data\System\Data\SqlClient\SqlBulkCopy.cs (1)
866object columnValue = _DbDataReaderRowSource.GetValue(sourceOrdinal);
System.Data.Entity (5)
System\Data\Common\Internal\Materialization\Shaper.cs (1)
845return reader.GetValue(ordinal);
System\Data\EntityClient\EntityCommand.cs (1)
499object result = reader.Read() ? reader.GetValue(0) : null;
System\Data\EntityClient\EntityDataReader.cs (1)
440return this._storeDataReader.GetValue(ordinal);
System\Data\Mapping\Update\Internal\DynamicUpdateCommand.cs (1)
136value = reader.GetValue(ordinal);
System\Data\Mapping\Update\Internal\FunctionUpdateCommand.cs (1)
264value = reader.GetValue(columnOrdinal);
System.Data.Linq (1)
SqlClient\Reader\ObjectReaderCompiler.cs (1)
2952public override object GetValue(int i) { return reader.GetValue(i); }
System.Workflow.Runtime (1)
Hosting\SqlWorkflowPersistenceService.cs (1)
611result = (byte[])dr.GetValue(0);