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 int BulkMoveIn(
	HttpRequestKey requestKey,
	ConnectionConfiguration connection,
	string table,
	IDictionary<DBColumn, DBColumn> columnMapping
)
Visual Basic
Public Function BulkMoveIn ( _
	requestKey As HttpRequestKey, _
	connection As ConnectionConfiguration, _
	table As String, _
	columnMapping As IDictionary(Of DBColumn, DBColumn) _
) As Integer

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.

See Also