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