18 references to Value
System.Data (18)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3533setters.SetInt32( sink, ordinal, value.Value );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
733return XmlConvert.ToString(((SqlInt32)value).Value);
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
447comVal = ((SqlInt32)sqlVal).Value;
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
10012WriteInt(((SqlInt32)value).Value, stateObj); 10972return SerializeLong(((SqlInt32)value).Value, stateObj);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
313return x.IsNull ? Null : new SqlBoolean(x.Value != 0);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (3)
272if (x.Value > (int)Byte.MaxValue || x.Value < (int)Byte.MinValue) 275return x.IsNull ? Null : new SqlByte((byte)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1728return x.IsNull ? Null : new SqlDecimal(x.Value);
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
235return x.IsNull ? Null : new SqlDouble((double)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
271int value = x.Value;
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (2)
103return x.Value; 578return IsNull ? 0 : Value.GetHashCode();
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
320return x.IsNull ? Null : new SqlInt64((long)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
377return x.IsNull ? Null : new SqlMoney(x.Value);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
240return x.IsNull ? Null : new SqlSingle((float)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
535return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null));