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