28 references to Value
System.Data (28)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3503setters.SetDouble( sink, ordinal, value.Value );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
727return XmlConvert.ToString(((SqlDouble)value).Value);
fx\src\data\System\Data\Common\SQLTypes\SQLByteStorage.cs (1)
92return Math.Sqrt(var.Value);
fx\src\data\System\Data\Common\SQLTypes\SQLDecimalStorage.cs (1)
92return Math.Sqrt(var.Value);
fx\src\data\System\Data\Common\SQLTypes\SQLDoubleStorage.cs (1)
92return Math.Sqrt(var.Value);
fx\src\data\System\Data\Common\SQLTypes\SQLInt16Storage.cs (1)
92return Math.Sqrt(var.Value);
fx\src\data\System\Data\Common\SQLTypes\SQLInt32Storage.cs (1)
92return Math.Sqrt(var.Value);
fx\src\data\System\Data\Common\SQLTypes\SQLInt64Storage.cs (1)
92return Math.Sqrt(var.Value);
fx\src\data\System\Data\Common\SQLTypes\SQLMoneyStorage.cs (1)
92return Math.Sqrt(var.Value);
fx\src\data\System\Data\Common\SQLTypes\SQLSingleStorage.cs (1)
93return Math.Sqrt(var.Value);
fx\src\data\System\Data\SqlClient\SqlBulkCopy.cs (2)
883value = new SqlDecimal(_SqlDataReaderRowSource.GetSqlDouble(sourceOrdinal).Value); 960return new SqlDecimal(((SqlDouble)currentRowValue).Value);
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
435comVal = ((SqlDouble)sqlVal).Value;
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
9962WriteDouble(((SqlDouble)value).Value, stateObj); 10931return SerializeDouble(((SqlDouble)value).Value);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
329return x.IsNull ? Null : new SqlBoolean(x.Value != 0.0);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (3)
314if (x.Value > (double)Byte.MaxValue || x.Value < (double)Byte.MinValue) 317return x.IsNull ? Null : new SqlByte((byte)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1763return x.IsNull ? SqlDecimal.Null : new SqlDecimal(x.Value);
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (2)
106return x.Value; 477return IsNull ? 0 : Value.GetHashCode();
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
316double value = x.Value;
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
310double value = x.Value;
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
349double value = x.Value;
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
404return x.IsNull ? Null : new SqlMoney(x.Value);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
278return x.IsNull ? Null : new SqlSingle(x.Value);
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
559return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null));