Asynchronously retrieves a list of columns from a table in the database.

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(
	string tableName,
	EventHandler<AsyncCompletedEventArgs<DBColumn[]>> completionCallback,
	Object state
)
Visual Basic
Public Sub GetColumnsAsync ( _
	tableName As String, _
	completionCallback As EventHandler(Of AsyncCompletedEventArgs(Of DBColumn())), _
	state As Object _
)

Parameters

tableName
Type: System..::..String
The name of the table to get columns from.
completionCallback
Type: System..::..EventHandler<(Of <(<'AsyncCompletedEventArgs<(Of <(<'array<DBColumn>[]()[][]>)>)>>)>)>
state
Type: System..::..Object

See Also