Adds an entry to the DNC table. This function will place the account identifier and phone number into the DNC table such that the combination of the two will be prohibited from being called by Campaigns which use the given dncSource until the expiration date/time occurs. This set of functions take a Campaign's DNC source as a basis for placing the information into the DNC table.

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#
[ObsoleteAttribute("AddEntryToDNCTableByCampaign has been deprecated, use AddEntryToDNC instead.", 
	true)]
public bool AddEntryToDNCTableByCampaign(
	ConfigurationId campaignId,
	DNCRecord dncRecord
)
Visual Basic
<ObsoleteAttribute("AddEntryToDNCTableByCampaign has been deprecated, use AddEntryToDNC instead.",  _
	True)> _
Public Function AddEntryToDNCTableByCampaign ( _
	campaignId As ConfigurationId, _
	dncRecord As DNCRecord _
) As Boolean

Parameters

campaignId
Type: ConfigurationId
The Campaign Configuration.
dncRecord
Type: ININ.IceLib.Configuration.Dialer..::..DNCRecord
The DNC Record object which defines the values to add to the DNC table.

Return Value

Boolean representing the function's successful return.

See Also