18 references to Value
System.Data (18)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3543setters.SetInt64( sink, ordinal, value.Value );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
735return XmlConvert.ToString(((SqlInt64)value).Value);
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
449comVal = ((SqlInt64)sqlVal).Value;
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
10015WriteLong(((SqlInt64)value).Value, stateObj); 10975return SerializeLong(((SqlInt64)value).Value, stateObj);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
321return x.IsNull ? Null : new SqlBoolean(x.Value != 0);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (3)
286if (x.Value > (long)Byte.MaxValue || x.Value < (long)Byte.MinValue) 289return x.IsNull ? Null : new SqlByte((byte)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1736return x.IsNull ? Null : new SqlDecimal(x.Value);
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
243return x.IsNull ? Null : new SqlDouble((double)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
286long value = x.Value;
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
280long value = x.Value;
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (2)
103return x.Value; 632return IsNull ? 0 : Value.GetHashCode();
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
385return x.IsNull ? Null : new SqlMoney(x.Value);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
249return x.IsNull ? Null : new SqlSingle((float)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
543return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null));