Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
16 references to IsNull
System.Data (16)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
2686if ( !value.IsNull ) { 3444if ( value.IsNull ) {
fx\src\data\System\Data\Common\SQLTypes\SQLCharsStorage.cs (1)
71return (values[record].IsNull);
fx\src\data\System\Data\Sql\SqlMetaData.cs (3)
943if (null != value && !value.IsNull) { 969if (null == value || value.IsNull) { 1266if (!sch.IsNull)
fx\src\data\System\Data\SqlClient\SqlParameter.cs (1)
1698if (((SqlChars) value).IsNull)
fx\src\data\System\Data\SQLTypes\SQLChars.cs (9)
325 else if (IsNull) 339 if (IsNull) 405 if (IsNull) { 440 return IsNull ? SqlString.Null : new String(Value); 465 if (IsNull) { 539 if (IsNull) { 621 return m_sqlchars == null || m_sqlchars.IsNull; 629return m_sqlchars != null && !m_sqlchars.IsNull; 641 return m_sqlchars != null && (!m_sqlchars.IsNull || m_sqlchars.m_rgchBuf != null);