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