IVsDataReader.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) |
When implemented by a class, indicates whether the data item at the specified index is unspecified, that is, null. |
IsNullItem(String) |
When implemented by a class, indicates whether the value of the given data item is unspecified, that is, null. |
IsNullItem(Int32)
When implemented by a class, indicates whether the data item at the specified index is unspecified, that is, null.
public:
bool IsNullItem(int index);
public bool IsNullItem (int index);
abstract member IsNullItem : int -> bool
Public 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.
Applies to
IsNullItem(String)
When implemented by a class, indicates whether the value of the given data item is unspecified, that is, null.
public:
bool IsNullItem(System::String ^ name);
public bool IsNullItem (string name);
abstract member IsNullItem : string -> bool
Public 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.