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