Table of Contents

Property this

Namespace
YndigoBlue.Velocity.Model
Assembly
YndigoBlue.Velocity.dll

this[int]

Gets or sets a field value by zero-based column index. Getting returns an untyped object; use the typed GetField* methods for type-safe access.

public object this[int fieldIndex] { get; set; }

Parameters

fieldIndex int

The zero-based column index.

Property Value

object

this[string]

Gets or sets a field value by column name. Getting returns an untyped object; use the typed GetField* methods for type-safe access.

public object this[string fieldName] { get; set; }

Parameters

fieldName string

The column name.

Property Value

object