Table of Contents

Property this

Namespace
Innova.Data
Assembly
Innova.Data.dll

this[string]

Gets the column with the specified name.

public object this[string name] { get; }

Parameters

name string

The name of the column to find.

Property Value

object

The column with the specified name as an object.

Exceptions

IndexOutOfRangeException

No column with the specified name was found.

this[int]

Gets the column located at the specified index.

public object this[int i] { get; }

Parameters

i int

The zero-based index of the column to get.

Property Value

object

The column located at the specified index as an object.

Exceptions

IndexOutOfRangeException

The index passed was outside the range of 0 through FieldCount.