12 references to Null
System.Data (12)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
666result = SqlXml.Null; 1109SqlXml.Null, // SqlDbType.Xml
fx\src\data\System\Data\Common\SQLTypes\SqlXmlStorage.cs (3)
24: base(column, typeof(SqlXml), SqlXml.Null, SqlXml.Null, StorageType.Empty) { 76values[record] = SqlXml.Null;
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (1)
278_readerDataValues[i] = System.Data.SqlTypes.SqlXml.Null;
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (3)
488return SqlXml.Null; 659return SqlXml.Null; 670return SqlXml.Null;
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (2)
2381sx = _data[i].IsNull ? SqlXml.Null : _data[i].SqlCachedBuffer.ToSqlXml(); 2388sx = _data[i].IsNull ? SqlXml.Null : _data[i].SqlCachedBuffer.ToSqlXml();
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
402else if (sqlType == typeof(SqlXml)) return SqlXml.Null;