Asynchronously adds scheduled calls to the scheduled calls table or replaces entries with the same campaign and identity.

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 AddScheduledCallsAsync(
	IList<ScheduledCall> calls,
	EventHandler<AsyncCompletedEventArgs<int>> callback,
	Object userState
)
Visual Basic
Public Sub AddScheduledCallsAsync ( _
	calls As IList(Of ScheduledCall), _
	callback As EventHandler(Of AsyncCompletedEventArgs(Of Integer)), _
	userState As Object _
)

Parameters

calls
Type: System.Collections.Generic..::..IList<(Of <(<'ScheduledCall>)>)>
The calls to add.
callback
Type: System..::..EventHandler<(Of <(<'AsyncCompletedEventArgs<(Of <(<'Int32>)>)>>)>)>
The event handler to call upon completion.
userState
Type: System..::..Object
The user state.

See Also