26 references to Null
System.Data (26)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
526
result = SqlInt16.
Null
;
1100
SqlInt16.
Null
, // SqlDbType.SmallInt
fx\src\data\System\Data\Common\SQLConvert.cs (1)
39
return SqlInt16.
Null
;
fx\src\data\System\Data\Common\SQLTypes\SQLInt16Storage.cs (2)
25
: base(column, typeof(SqlInt16), SqlInt16.
Null
, SqlInt16.
Null
, StorageType.SqlInt16) {
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
564
return SqlInt16.
Null
;
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
396
else if (sqlType == typeof(SqlInt16)) return SqlInt16.
Null
;
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (19)
117
return SqlInt16.
Null
;
128
return x.IsNull ?
Null
: new SqlInt16((short)-x.m_value);
135
return x.IsNull ?
Null
: new SqlInt16((short)~x.m_value);
147
return
Null
;
161
return
Null
;
175
return
Null
;
190
return
Null
;
207
return
Null
;
224
return(x.IsNull || y.IsNull) ?
Null
: new SqlInt16((short)(x.m_value & y.m_value));
231
return(x.IsNull || y.IsNull) ?
Null
: new SqlInt16((short)((ushort)x.m_value | (ushort)y.m_value));
238
return(x.IsNull || y.IsNull) ?
Null
: new SqlInt16((short)(x.m_value ^ y.m_value));
250
return x.IsNull ?
Null
: new SqlInt16((short)(x.ByteValue));
258
return x.IsNull ?
Null
: new SqlInt16((short)(x.Value));
269
return
Null
;
284
return
Null
;
299
return
Null
;
314
return
Null
;
328
return x.IsNull ?
Null
: new SqlInt16(checked((short)x.ToInt32()));
344
return x.IsNull ?
Null
: new SqlInt16(Int16.Parse(x.Value, (IFormatProvider)null));