Asynchrously retrieves the fields in this contact list.

Namespace: ININ.IceLib.Configuration.Dialer
Assembly: ININ.IceLib.Dialer (in ININ.IceLib.Dialer.dll) Version: 0.0.0.0 (22.3.0.208)

Syntax

C#
public void GetColumnsAsync(
	EventHandler<AsyncCompletedEventArgs<DBColumn[]>> completionCallback,
	Object state
)
Visual Basic
Public Sub GetColumnsAsync ( _
	completionCallback As EventHandler(Of AsyncCompletedEventArgs(Of DBColumn())), _
	state As Object _
)

Parameters

completionCallback
Type: System..::..EventHandler<(Of <(<'AsyncCompletedEventArgs<(Of <(<'array<DBColumn>[]()[][]>)>)>>)>)>
state
Type: System..::..Object

Return Value

An array of DBColumn objects representing the fields in the contact list database table.

Remarks

An alternative (synchronous) way to get this collection is to use the ValueCollection property of the ColumnMap.

See Also