33 references to Value
System.Data (33)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (3)
107
Array.Copy( value.
Value
, checked((int)fieldOffset), buffer, bufferOffset, length );
378
result = new SqlBytes( binaryVal.
Value
);
3382
SetByteArray_Unchecked( sink, setters, ordinal, value.
Value
, offset, length );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
713
return Convert.ToBase64String(((SqlBinary)value).
Value
);
fx\src\data\System\Data\Sql\SqlMetaData.cs (2)
905
byte[] rgbValue = value.
Value
;
924
byte[] rgbValue = value.
Value
;
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
173
return this.SqlBinary.
Value
; //
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (2)
1491
data = _data[i].SqlBinary.
Value
;
1668
data = GetSqlBinary(i).
Value
;
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
437
comVal = ((SqlBinary)sqlVal).
Value
;
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
9976
return stateObj.WriteByteArray(((SqlBinary)value).
Value
, actualLength, offset, canAccumulate:false);
10940
Buffer.BlockCopy(((SqlBinary)value).
Value
, offset, b, 0, actualLength);
fx\src\data\System\Data\SQLTypes\SQLBinary.cs (19)
79
/// Gets whether or not <see cref='System.Data.SqlTypes.SqlBinary.
Value
'/> is null.
119
/// Gets the length in bytes of <see cref='System.Data.SqlTypes.SqlBinary.
Value
'/>.
150
return x.
Value
;
178
byte[] rgbResult = new byte[x.
Value
.Length + y.
Value
.Length];
179
x.
Value
.CopyTo(rgbResult, 0);
180
y.
Value
.CopyTo(rgbResult, x.
Value
.Length);
258
return new SqlBoolean(PerformCompareByte(x.
Value
, y.
Value
) == EComparison.EQ);
281
return new SqlBoolean(PerformCompareByte(x.
Value
, y.
Value
) == EComparison.LT);
293
return new SqlBoolean(PerformCompareByte(x.
Value
, y.
Value
) == EComparison.GT);
305
EComparison cmpResult = PerformCompareByte(x.
Value
, y.
Value
);
318
EComparison cmpResult = PerformCompareByte(x.
Value
, y.
Value
);
520
/// the <see cref='System.Data.SqlTypes.SqlBinary.
Value
'/> property of an
fx\src\data\System\Data\SQLTypes\SQLBytes.cs (1)
128
public SqlBytes(SqlBinary value) : this(value.IsNull ? (byte[])null : value.
Value
) {
fx\src\data\System\Data\SQLTypes\SQLGuid.cs (1)
200
return x.IsNull ? Null : new SqlGuid(x.
Value
);