5 references to Value
System.Data (5)
fx\src\data\System\Data\Common\SQLConvert.cs (1)
719return Convert.ToBase64String(((SqlBytes)value).Value);
fx\src\data\System\Data\SqlClient\SqlParameter.cs (1)
1673return ((SqlBytes)value).Value.Length;
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
9980return stateObj.WriteByteArray(((SqlBytes)value).Value, actualLength, offset, canAccumulate:false); 10944Buffer.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);