DataReader.IsNullItem Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
IsNullItem(Int32) |
Indicates whether the data item at the specified index is unspecified, that is, null. |
IsNullItem(String) |
Indicates whether the value of the given data item is unspecified, that is, null. |
IsNullItem(Int32)
Indicates whether the data item at the specified index is unspecified, that is, null.
public:
abstract bool IsNullItem(int index);
public abstract bool IsNullItem (int index);
abstract member IsNullItem : int -> bool
Public MustOverride Function IsNullItem (index As Integer) As Boolean
Parameters
- index
- Int32
Index of the data item to examine.
Returns
true if the item is null, that is, unspecified; otherwise, false.
Implements
Applies to
IsNullItem(String)
Indicates whether the value of the given data item is unspecified, that is, null.
public:
virtual bool IsNullItem(System::String ^ name);
public virtual bool IsNullItem (string name);
abstract member IsNullItem : string -> bool
override this.IsNullItem : string -> bool
Public Overridable Function IsNullItem (name As String) As Boolean
Parameters
- name
- String
The name of the data item to examine.
Returns
true if the item is null, that is, unspecified; otherwise, false.