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)
2565
if ( !value.
IsNull
) {
3409
if ( value.
IsNull
) {
fx\src\data\System\Data\Common\SQLTypes\SQLBytesStorage.cs (1)
70
return (values[record].
IsNull
);
fx\src\data\System\Data\Sql\SqlMetaData.cs (3)
984
if (null != value && !value.
IsNull
)
1011
if (null == value || value.
IsNull
) {
1283
if (!sb.
IsNull
)
fx\src\data\System\Data\SqlClient\SqlParameter.cs (1)
1711
if (((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);