18 references to Value
System.Data (18)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3523setters.SetInt16( sink, ordinal, value.Value );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
731return XmlConvert.ToString(((SqlInt16)value).Value);
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
445comVal = ((SqlInt16)sqlVal).Value;
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
10009WriteShort(((SqlInt16)value).Value, stateObj); 10969return SerializeLong(((SqlInt16)value).Value, stateObj);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
305return x.IsNull ? Null : new SqlBoolean(x.Value != 0);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (3)
258if (x.Value > (short)Byte.MaxValue || x.Value < (short)Byte.MinValue) 261return x.IsNull ? Null : new SqlByte((byte)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1720return x.IsNull ? Null : new SqlDecimal((int)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
227return x.IsNull ? Null : new SqlDouble((double)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (2)
102return x.Value; 566return IsNull ? 0 : Value.GetHashCode();
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
266return x.IsNull ? Null : new SqlInt32(x.Value);
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
312return x.IsNull ? Null : new SqlInt64((long)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
369return x.IsNull ? Null : new SqlMoney((int)x.Value);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
231return x.IsNull ? Null : new SqlSingle((float)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
527return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null));