Base:
method
GetValue
System.Data.Common.DbDataReader.GetValue(System.Int32)
Implemented interface member:
method
GetValue
System.Data.IDataRecord.GetValue(System.Int32)
1 override of GetValue
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlDataReaderSmi.cs (1)
104public override Object GetValue(int ordinal) {
12 references to GetValue
System.Activities.DurableInstancing (7)
System\Activities\DurableInstancing\LoadWorkflowAsyncResult.cs (5)
105byte[] primitiveProperties = reader.IsDBNull(3) ? null : (byte[])(reader.GetValue(3)); 106byte[] complexProperties = reader.IsDBNull(4) ? null : (byte[])(reader.GetValue(4)); 107byte[] metadataProperties = reader.IsDBNull(5) ? null : (byte[])(reader.GetValue(5)); 202byte[] serializedMetadataChanges = (byte[]) reader.GetValue(2); 245destination[key] = SerializationUtilities.DeserializeKeyMetadata((byte[]) reader.GetValue(4), encodingOption);
System\Activities\DurableInstancing\StoreUtilities.cs (2)
190byte[] serializedPrimitiveLockOwnerData = reader.IsDBNull(4) ? null : (byte[]) reader.GetValue(4); 191byte[] serializedComplexLockOwnerData = reader.IsDBNull(5) ? null : (byte[]) reader.GetValue(5);
System.Data (5)
fx\src\data\System\Data\SqlClient\SqlBulkCopy.cs (1)
901object value = _SqlDataReaderRowSource.GetValue(sourceOrdinal);
fx\src\data\System\Data\SqlClient\SqlCommand.cs (2)
1168retResult = ds.GetValue(0); 2541result = reader.GetValue(0);
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (2)
398return GetValue(i); 404return GetValue(GetOrdinal(name));