Asynchronously copies records from a database table (not necessarily a contact list) accessible via a Dialer connection into 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 BulkMoveInAsync(
	HttpRequestKey requestKey,
	ConnectionConfiguration connection,
	string table,
	IDictionary<DBColumn, DBColumn> columnMapping,
	EventHandler<AsyncCompletedEventArgs<int>> callback,
	Object userState
)
Visual Basic
Public Sub BulkMoveInAsync ( _
	requestKey As HttpRequestKey, _
	connection As ConnectionConfiguration, _
	table As String, _
	columnMapping As IDictionary(Of DBColumn, DBColumn), _
	callback As EventHandler(Of AsyncCompletedEventArgs(Of Integer)), _
	userState As Object _
)

Parameters

requestKey
Type: ININ.IceLib.Configuration.Dialer..::..HttpRequestKey
The request key obtained by calling GetHttpRequestKey(ConfigurationId, ServerType).
connection
Type: ININ.IceLib.Configuration.Dialer..::..ConnectionConfiguration
The connection under which the source table resides.
table
Type: System..::..String
The source table name.
columnMapping
Type: System.Collections.Generic..::..IDictionary<(Of <(<'DBColumn, DBColumn>)>)>
A mapping between the source table's columns and the corresponding columns in the contact list.
callback
Type: System..::..EventHandler<(Of <(<'AsyncCompletedEventArgs<(Of <(<'Int32>)>)>>)>)>
The event handler to call upon completion.
userState
Type: System..::..Object
The user state.

See Also