14 references to Null
System.Data (14)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (6)
310return SqlBinary.Null; 1085SqlBinary.Null, // SqlDbType.Binary 1091SqlBinary.Null, // SqlDbType.Image 1103SqlBinary.Null, // SqlDbType.Timestamp 1105SqlBinary.Null, // SqlDbType.VarBinary 1144targetBuffer.SqlBinary = SqlBinary.Null;
fx\src\data\System\Data\Common\SQLConvert.cs (1)
350return SqlBinary.Null;
fx\src\data\System\Data\Common\SQLTypes\SQLBinaryStorage.cs (2)
25: base(column, typeof(SqlBinary), SqlBinary.Null, SqlBinary.Null, StorageType.SqlBinary) {
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
392else if (sqlType == typeof(SqlBinary)) return SqlBinary.Null;
fx\src\data\System\Data\SqlClient\TdsParser.cs (1)
4804nullVal.SqlBinary = SqlBinary.Null;
fx\src\data\System\Data\SQLTypes\SQLBinary.cs (2)
176return Null; 242return x.IsNull ? SqlBinary.Null : new SqlBinary(x.ToByteArray());
fx\src\data\System\Data\SQLTypes\SQLBytes.cs (1)
442 return IsNull ? SqlBinary.Null : new SqlBinary(Value);