22 references to Null
System.Data.Common (22)
System\Data\Common\SQLConvert.cs (1)
35return SqlInt16.Null;
System\Data\Common\SQLTypes\SQLInt16Storage.cs (2)
19: base(column, typeof(SqlInt16), SqlInt16.Null, SqlInt16.Null, StorageType.SqlInt16)
System\Data\SQLTypes\SQLInt16.cs (19)
79return SqlInt16.Null; 87return x.IsNull ? Null : new SqlInt16((short)-x.m_value); 92return x.IsNull ? Null : new SqlInt16((short)~x.m_value); 101return Null; 113return Null; 125return Null; 138return Null; 154return Null; 170return (x.IsNull || y.IsNull) ? Null : new SqlInt16((short)(x.m_value & y.m_value)); 175return (x.IsNull || y.IsNull) ? Null : new SqlInt16(unchecked((short)((ushort)x.m_value | (ushort)y.m_value))); 180return (x.IsNull || y.IsNull) ? Null : new SqlInt16((short)(x.m_value ^ y.m_value)); 188return x.IsNull ? Null : new SqlInt16(x.ByteValue); 194return x.IsNull ? Null : new SqlInt16(x.Value); 203return Null; 216return Null; 229return Null; 242return Null; 254return x.IsNull ? Null : new SqlInt16(checked((short)x.ToInt32())); 266return x.IsNull ? Null : new SqlInt16(short.Parse(x.Value, null));