5 references to Value
System.Data (5)
fx\src\data\System\Data\Common\SQLConvert.cs (1)
719
return Convert.ToBase64String(((SqlBytes)value).
Value
);
fx\src\data\System\Data\SqlClient\SqlParameter.cs (1)
1673
return ((SqlBytes)value).
Value
.Length;
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
9980
return stateObj.WriteByteArray(((SqlBytes)value).
Value
, actualLength, offset, canAccumulate:false);
10944
Buffer.BlockCopy(((SqlBytes)value).
Value
, offset, b, 0, actualLength);
fx\src\data\System\Data\SQLTypes\SQLBytes.cs (1)
442
return IsNull ? SqlBinary.Null : new SqlBinary(
Value
);