AdoDotNetSchemaReader.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) |
Retrieves a Boolean value indicating whether the data item at the specified index is null. |
IsNullItem(String) |
Retrieves a Boolean value indicating whether the data item value for the specified data item name is null. |
IsNullItem(Int32)
Retrieves a Boolean value indicating whether the data item at the specified index is null.
public:
override bool IsNullItem(int index);
public override bool IsNullItem (int index);
override this.IsNullItem : int -> bool
Public Overrides Function IsNullItem (index As Integer) As Boolean
Parameters
- index
- Int32
Index in the field specifying the data item for which to test for null.
Returns
true if the data item is null; otherwise, false.
Applies to
IsNullItem(String)
Retrieves a Boolean value indicating whether the data item value for the specified data item name is null.
public:
override bool IsNullItem(System::String ^ name);
public override bool IsNullItem (string name);
override this.IsNullItem : string -> bool
Public Overrides Function IsNullItem (name As String) As Boolean
Parameters
- name
- String
The data item name for which to test for a null value.
Returns
true if the data item is null; otherwise, false.