33 references to Value
System.Data (33)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (3)
107Array.Copy( value.Value, checked((int)fieldOffset), buffer, bufferOffset, length ); 378result = new SqlBytes( binaryVal.Value ); 3382SetByteArray_Unchecked( sink, setters, ordinal, value.Value, offset, length );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
713return Convert.ToBase64String(((SqlBinary)value).Value);
fx\src\data\System\Data\Sql\SqlMetaData.cs (2)
905byte[] rgbValue = value.Value; 924byte[] rgbValue = value.Value;
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
173return this.SqlBinary.Value; //
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (2)
1491data = _data[i].SqlBinary.Value; 1668data = GetSqlBinary(i).Value;
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
437comVal = ((SqlBinary)sqlVal).Value;
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
9976return stateObj.WriteByteArray(((SqlBinary)value).Value, actualLength, offset, canAccumulate:false); 10940Buffer.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'/>. 150return x.Value; 178byte[] rgbResult = new byte[x.Value.Length + y.Value.Length]; 179x.Value.CopyTo(rgbResult, 0); 180y.Value.CopyTo(rgbResult, x.Value.Length); 258return new SqlBoolean(PerformCompareByte(x.Value, y.Value) == EComparison.EQ); 281return new SqlBoolean(PerformCompareByte(x.Value, y.Value) == EComparison.LT); 293return new SqlBoolean(PerformCompareByte(x.Value, y.Value) == EComparison.GT); 305EComparison cmpResult = PerformCompareByte(x.Value, y.Value); 318EComparison 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)
200return x.IsNull ? Null : new SqlGuid(x.Value);