16 references to Value
System.Data (16)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3402
setters.SetByte( sink, ordinal, value.
Value
);
fx\src\data\System\Data\Common\SQLConvert.cs (1)
717
return XmlConvert.ToString(((SqlByte)value).
Value
);
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
443
comVal = ((SqlByte)sqlVal).
Value
;
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
10006
stateObj.WriteByte(((SqlByte)value).
Value
);
10966
return SerializeLong(((SqlByte)value).
Value
, stateObj);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
297
return x.IsNull ? Null : new SqlBoolean(x.
Value
!= 0);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (2)
103
return x.
Value
;
557
return IsNull ? 0 :
Value
.GetHashCode();
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1712
return x.IsNull ? Null : new SqlDecimal((int)(x.
Value
));
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
219
return x.IsNull ? Null : new SqlDouble((double)(x.
Value
));
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
258
return x.IsNull ? Null : new SqlInt16((short)(x.
Value
));
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
258
return x.IsNull ? Null : new SqlInt32(x.
Value
);
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
304
return x.IsNull ? Null : new SqlInt64((long)(x.
Value
));
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
361
return x.IsNull ? Null : new SqlMoney((int)x.
Value
);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
222
return x.IsNull ? Null : new SqlSingle((float)(x.
Value
));
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
519
return x.IsNull ? Null : new SqlString((x.
Value
).ToString((IFormatProvider)null));