DynamicRecord.Item[] Property

Definition

Overloads

Item[Int32]

Returns the value of a column in the DynamicRecord instance using the specified index.

Item[String]

Returns the value of a column in the DynamicRecord instance using the specified name.

Item[Int32]

Returns the value of a column in the DynamicRecord instance using the specified index.

public object this[int index] { get; }
member this.Item(int) : obj
Default Public ReadOnly Property Item(index As Integer) As Object

Parameters

index
Int32

Property Value

The value of the specified column.

Applies to

Item[String]

Returns the value of a column in the DynamicRecord instance using the specified name.

public object this[string name] { get; }
member this.Item(string) : obj
Default Public ReadOnly Property Item(name As String) As Object

Parameters

name
String

Property Value

The value of the specified column.

Applies to