Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
15 references to IsNull
System.Data (15)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
2565if ( !value.IsNull ) { 3409if ( value.IsNull ) {
fx\src\data\System\Data\Common\SQLTypes\SQLBytesStorage.cs (1)
70return (values[record].IsNull);
fx\src\data\System\Data\Sql\SqlMetaData.cs (3)
984if (null != value && !value.IsNull) 1011if (null == value || value.IsNull) { 1283if (!sb.IsNull)
fx\src\data\System\Data\SqlClient\SqlParameter.cs (1)
1711if (((SqlBytes) value).IsNull)
fx\src\data\System\Data\SQLTypes\SQLBytes.cs (8)
329 else if (IsNull) 342 if (IsNull) 407 if (IsNull) { 442 return IsNull ? SqlBinary.Null : new SqlBinary(Value); 467 if (IsNull) { 552 if (IsNull) { 642 return m_sb != null && !m_sb.IsNull; 654 return m_sb != null && (!m_sb.IsNull || m_sb.m_rgbBuf != null);