20 references to Value
System.Data (20)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3568setters.SetSingle( sink, ordinal, value.Value );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
739return XmlConvert.ToString(((SqlSingle)value).Value);
fx\src\data\System\Data\SqlClient\SqlBulkCopy.cs (2)
886value = new SqlDecimal(_SqlDataReaderRowSource.GetSqlSingle(sourceOrdinal).Value); 947return new SqlDecimal(((SqlSingle)currentRowValue).Value);
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
431comVal = ((SqlSingle)sqlVal).Value;
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
9959WriteFloat(((SqlSingle)value).Value, stateObj); 10928return SerializeFloat(((SqlSingle)value).Value);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
337return x.IsNull ? Null : new SqlBoolean(x.Value != 0.0);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (3)
300if (x.Value > (float)Byte.MaxValue || x.Value < (float)Byte.MinValue) 303return x.IsNull ? Null : new SqlByte((byte)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1755return x.IsNull ? SqlDecimal.Null : new SqlDecimal((double)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
251return x.IsNull ? Null : new SqlDouble((double)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
301float value = x.Value;
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
295float value = x.Value;
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
334float value = x.Value;
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
396return x.IsNull ? Null : new SqlMoney((double)x.Value);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (2)
108return x.Value; 481return IsNull ? 0 : Value.GetHashCode();
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
551return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null));